$(document).ready(function(){
	hade_cl ();
	
    $("a.opn_menu").click(function(){
		$(this).next("ul.kid").slideToggle(170);	
		$(this).find('h3').toggleClass("ell");
    });
	
	$(window).resize(function(){
		hade_cl ();	
	});

});

	function hade_cl (){
		
		if ( $(this).width() > 1150 ){
			$('div.clock_vert').show();
		}else{
			$('div.clock_vert').hide();
		}
	};