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

 $(document).ready(function(){								
		$.updnWatermark.attachAll();
		hideblock();
	});
 
 function hideblock(){
	 	$(".hideblock .tab").hover(function(){
				$(this).toggleClass("hover");
			},function(){
				$(this).removeClass("hover");
			});
		$(".hideblock .tab").click(function(){
				$(this).parents(".hideblock").find(".tab.active").removeClass("active");
				$(this).toggleClass("active");
				cls = $(this).find("span").attr("class");
				$(this).parents(".hideblock").find(".hbcont.hb_active").removeClass("hb_active");
				$(this).parents(".hideblock").find(".hbcont."+cls).toggleClass("hb_active");
			});	 
	 }
