window.onerror = function(){
  return true;
}
jQuery(document).ready(function() {
		$("a.img_cat").fancybox();
	    jQuery('#mycarousel0').jcarousel({
    	  scroll: 1
   		 });
     	jQuery('#mycarousel1').jcarousel({
      		scroll: 1
    	});


	$(".sub_menu").each(function(){
			$(this).children("li").each(function(i){
				count_li=i;
			})
			//alert(count_li);
				$(this).css("height",(count_li+1)*22);
				})
	
	
	$("#menu ul li").mouseenter(function(){
		if($(this).children(".sub_menu").length>0 && $(this).children(".sub_menu").is(":hidden")){
			$(this).children(".sub_menu").show("normal");
		}		
	}).mouseleave(function(){
		$(this).children(".sub_menu").hide("normal");	
	});
	

	$("#search input[type='text']").addClass("pole");
	
	
});



