$(document).ready(function() {

//HOMEPAGE TAB FUNCTION	
	
	//Show function
	 function tabShow() {
		$("#home_tab li").removeClass("active");
		$(this).removeClass("inactive").addClass("active");
		$(this).animate({ 
			width: "558px",
			height: "179px"
			}, 300, function() {
				$(".tab-content",this).fadeIn(300);
			});
		$("#home_tab li").not(this).animate({ 
			height: "84px"
		  }, 300, function() {
			});  
	}
		
	//Hide function
	function tabHide() {
		$(".tab-content").fadeOut(200);		
		$("#home_tab li").not(this).animate({ 
			height: "116px"
		}, 400, function() {
			$(".tab-content").fadeOut(200);
			});
			
		$(this).animate({ 
			width: "280px",
			height: "116px"
		}, 400, function() {
			$(".tab-content").fadeOut(200);
			$(this).removeClass("active").addClass("inactive");
			});	
	}
	  
	  //Config tab hover setting
    $("#home_tab li").hoverIntent({
     sensitivity: 1, // number = sensitivity threshold (must be 1 or higher)
     interval:200,   // number = milliseconds for onMouseOver polling interval
      over: tabShow,     // function = onMouseOver callback (required)
      timeout: 0,   // number = milliseconds delay before onMouseOut
      out: tabHide       // function = onMouseOut callback (required)
    });
	
//END HOMEPAGE TAB FUNCTION	

});
