$(function(){
	$(".productList > li:odd").addClass('alt-row')
	
	$('.answer').hide();
	
	$('#faqList > li').click(function(){
		$('.activeAnswer').slideUp().removeClass('activeAnswer');
		if($(this).find('.answer').is(':hidden')){
			$(this).find('.answer').slideDown().addClass('activeAnswer');
		}
	});
	
	$('#banner .pageWrap').cycle({
		fx: 'fade',
                timeout:       7000,  // units in milliseconds  = 4 seconds   5000 = 5 Seconds etc
	});
	
	$('#mainMenu a').corner("top 5px cc:#570010");
	$('#mainMenu a.active').corner("top 5px cc:#570010");
	
	$('.tab_content').hide();
	$('.tab_content:first').show();
	$("#productsNav a:first").addClass('active')
	
	$("#productsNav a").click(function() {
	
		$("#productsNav a").removeClass("active"); //Remove any "active" class
		$(this).addClass("active").show(); //Add "active" class to selected tab
		$(".tab_content").hide(); //Hide all tab content
	
		var activeTab = $(this).attr("href"); //Find the href attribute value to identify the active tab + content
		if ($.browser.msie)
		{$(activeTab).show();}
		else
		{$(activeTab).fadeIn();}
		return false;
	});
	
});

