//menu
$(document).ready(function(){
  
  $('li.mainlevel').mousemove(function(){
  $(this).find('ul').slideDown();//you can give it a speed
  });
  $('li.mainlevel').mouseleave(function(){
  $(this).find('ul').slideUp("fast");
  });
  
  
  movimgcli();
  
  
});

var movimgcli=function(){
	$(".P3Right3").animate({left:0},100);
	$(".P3Right3").animate({left:-1300},50000,"linear",function(){movimgcli2()});
}
var movimgcli2=function(){
	$(".P3Right3").animate({left:0},100);
	$(".P3Right3").animate({left:-1300},50000,"linear",function(){movimgcli()});
}
