	$(document).ready(function(){
		var options2 =
		{
			zoomWidth: 314,
			zoomHeight: 260,
			
			title: false,
			xOffset: 36,
			yOffset: 0,
			showEffect: 'show',
			hideEffect: 'hide',
			fadeinSpeed: 'fast',
			fadeoutSpeed: 'slow',
			imageOpacity: 0.4
		}
		$(".jqzoom").jqzoom(options2);
		
		$(".catItem").hoverIntent({
			interval: 50,
			over: prod_show, 
			timeout: 400,
			out: prod_hide
		});
		function prod_show(){ $(".catDesc", this).stop().animate({top:'53px'},{queue:false,duration:180}); }
		function prod_hide(){ $(".catDesc", this).stop().animate({top:'82px'},{queue:false,duration:180}); }
		
		$(".catItemS").hoverIntent({
			interval: 50,
			over: prod_showS, 
			timeout: 400,
			out: prod_hideS
		});
		function prod_showS(){ $(".catDescS", this).stop().animate({top:'184px'},{queue:false,duration:180}); }
		function prod_hideS(){ $(".catDescS", this).stop().animate({top:'210px'},{queue:false,duration:180}); }
		
		$("#searchBox").attr({ value: 'Product Search' }).focus(function(){
            if($(this).val()=="Product Search"){
               $(this).val("");
            }
       }).blur(function(){
            if($(this).val()==""){
               $(this).val("Product Search");
            }
       });

	});
