
/* Homepage Category Menus 
$(function() {
	$('#sub_nav li').hover(
		function(){
			$(this).children().addClass('off') 
			$('.sub_content p',$(this)).delay(400).hide('fast');
			$('.sub_content',$(this)).stop().delay(300).animate({'height':'210px'},350);			
		},
		function() {
			$(this).children().removeClass('off');
			$('.sub_content p',$(this)).delay(50).show('fast');
			$('.sub_content',$(this)).stop().animate({'height':'66px'},200);
		}
	); 
});*/

$(function() { 
	function show() {
		$(this).children().addClass('off') 
		$('.sub_content p',$(this)).delay(400).hide('fast');
		$('.sub_content',$(this)).stop().delay(300).animate({'height':'155px'},350);
	}  
	function hide() { 
		$(this).children().removeClass('off');
		$('.sub_content p',$(this)).delay(50).show('fast');
		$('.sub_content',$(this)).stop().animate({'height':'66px'},200);
   } 
   $("#sub_nav li").hoverIntent({
     sensitivity: 10, // number = sensitivity threshold (must be 1 or higher)
     interval: 10,   // number = milliseconds for onMouseOver polling interval
     over: show,     // function = onMouseOver callback (required)
     timeout: 350,   // number = milliseconds delay before onMouseOut
     out: hide       // function = onMouseOut callback (required)
   });  
});

$(function() { 
	$('.product:odd').css('margin-right', '0');
	
	$("body.commercial #phone").empty().html("CALL NOW! (877) 771-3676");
});
