﻿// jQuery 
$(document).ready(function() {

	// Landing Page: Auto-Rotating Tabs
	$("#tabs ul").tabs({
		fx: {
			opacity: "toggle"
		}
	}).tabs("rotate", 7000);

	// Landing Page: Featured Categories Tabs
	$("ul#featuredNav").idTabs();

	// Global: External Links
	$('A[rel="external"]').click(function() {
		window.open($(this).attr('href'));
		return false;
	});

	// Landing Page: Featured Categories Section
	$("div.featured_category_Left").mouseover(function() {
		$(this).addClass("featured_category_Left_Over");
	});

	$("div.featured_category_Left").mouseout(function() {
		$(this).removeClass("featured_category_Left_Over");
	});
	
	
	// Test Page: Auto-Rotating Tabs
	$("#testTabs ul").tabs({
		fx: {
			opacity: "toggle"
		}
	}).tabs("rotate", 5000);

});