$(function() {

 
var fotorama = $('#fotorama');

var i, timeout;

var time = 4000;

fotorama.fotorama({
      width: 638,
  height: 290,
zoomToFit: false,
cropToFit: false,
thumbsPreview: false,
backgroundColor: '#fff',
    onShowImg: function(data){
         clearTimeout(timeout);
         timeout = setTimeout(function(){
            fotorama.trigger('showimg', data.index+1);
        }, time);
    }
});
 

	   });
	  
$(document).ready(function()
{ $("#menupush p.menuh").click(function()
    {
		$(this).next("div.menu_conteiner").slideToggle(200).siblings("div.menu_conteiner").slideUp("slow");
       	$(this).siblings();
	});
});


$(document).ready(function(){
      $("#letsfocus").focus();
 
  });


var now = new Date();

function gdate()

{
now.setSeconds(now.getSeconds()+1);
var hours = now.getHours();
var minutes = now.getMinutes();
if (hours < 10) hours='0'+hours;
if (minutes < 10)
minutes='0'+minutes;
$('#time').html(hours+(now.getSeconds() % 2 ? ':' : '<span style="color:white">:</span>')+minutes);
setTimeout("gdate()",1000);
}
gdate();

