$(document).ready(function() {
	 
	 
	 var height_x= $(document).height();
            $('.clock').css({  height:height_x + 'px' });
     var margin_x= document.documentElement.clientHeight;;
	 $(".inter_time").css('cursor','pointer');
	  $(".clock").hide();
	  $(".clock_container").hide();
	  $(".inter_time").click(function(){
		  		   $(".clock").fadeIn();
				   $(".clock_container").css({'margin-top':margin_x / 3});
				   $(".clock_container").fadeIn();
		   		  });
				 
	 });
