// JavaScript Document

$(document).ready(function(){
	//When page loads...
	$(".tab_content").hide(); //Hide all content
	$("ul.tabs li:first").addClass("active").show(); //Activate first tab
	$(".tab_content:first").show(); //Show first tab content
	$(".tab_content:first h2, .tab_content:first h3, .tab_content:first a, .tab_content:first p").delay(5000).show();
	//On Click Event
	$("ul.tabs li").click(function() {
		$("ul.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 href attribute value to identify the active tab + content
		$(activeTab).show(); //Show in the active ID content
		$(".tab_content h2, .tab_content h3, .tab_content a, .tab_content p").show();
		return false;
	});
	
	//script for the product filter
	
	$('#home-btm').css('position', 'relative');
	$('#home-btm').css('z-index', '20');
	$('#portfolio-list').hide();
	$('#products-list').hide();
	$('a#toggle-portfolio').toggle(function(){
		$('#portfolio-list').slideDown('slow');
		$('#products-list').slideUp(100);
		$('#drop-list-scroller').removeClass('productsHeight');
		$('#home-btm').delay(1000).css('z-index', '20');
    }, 
    function(){
        $('#portfolio-list').slideUp(100);
    });
	$('a#toggle-products').toggle(function(){
		$('#products-list').slideDown('slow');
		$('#portfolio-list').slideUp(100);
		$('#drop-list-scroller').addClass('productsHeight');
		$('#home-btm').css('z-index', '0');
    }, 
    function(){
        $('#products-list').slideUp(100);
		$('#drop-list-scroller').removeClass('productsHeight');
		$('#home-btm').delay(1000).css('z-index', '20');
    });
});

