




/*********************************
		Dropdown Menu (IE Support)
*********************************/
<!--//--><![CDATA[//><!--

	startList = function() {
		if (document.all&&document.getElementById) {
			navRoot = document.getElementById("mainNavigation");
			for (i=0; i<navRoot.childNodes.length; i++) {
				node = navRoot.childNodes[i];
				if (node.nodeName=="LI") {
					node.onmouseover=function() {
						this.className+=" over";
					}
					node.onmouseout=function() {
						this.className=this.className.replace(" over", "");
					}
				}
			}
		}
	}
	window.onload=startList;
	
	//--><!]]>


/*********************************
		Feature Cycle
*********************************/
$(function() {
	$('#featureSlider').cycle({ 
	fx:    'fade',
	pager: '#featureNavigation',
	timeout: 15000
	});
});






/*********************************
		Switching Tabs
*********************************/

$(document).ready(function() {	//Default Action	$(".tab_content").hide(); //Hide all content	$(".tabs li:first").addClass("active").show(); //Activate first tab	$(".tab_content:first").show(); //Show first tab content		//On Click Event	$(".tabs li").click(function() {		$(".tabs li").removeClass("active"); //Remove any "active" class		$(this).addClass("active"); //Add "active" class to selected tab		$(".tab_content").hide(); //Hide all tab content		var activeTab = $(this).find("a").attr("href"); //Find the rel attribute value to identify the active tab + content		$(activeTab).fadeIn(); //Fade in the active content		return false;	});});





