$(window).resize(function(){
	});

$(document).ready(function(){	
	$.updnWatermark.attachAll();
	menu();
	calendar();
	//catalog_sect();
 });

function calendar(){
	$(".calendartab .day").hover(function(){
		  $(this).find(".evlayer").css("display","block");
		},function(){
		  $(this).find(".evlayer").css("display","none");
		});
	}

function menu(){
	$(".menu .item").hover(function(){
			$(this).toggleClass("hover");			
		},function(){
			$(this).removeClass("hover");
		});	
	}
