$(document).ready(function(){
     if ($.browser.msie) {
        
            if (parseInt($.browser.version)<=6){
            
            $("#navigation li a .pad").css({"margin-left": "19px"});
            
          
        } //if ie6
       } //if ie*

 var ref = document.referrer;
 var checkregex = "lisaspa.it/$"

 if (ref=="" || ref.match(checkregex)){

  $('#logo,#lang').css({top:"-100px"}).animate({top:"0px"},1200,"easeOutQuart");
		  
		  var delay = 200;

		  $('a.be .pad').each(function(){
	 		
	 		var cosa=$(this);
            $(this).css({opacity:0});    
	 		setTimeout(function(){
	 		
	 		    $(cosa).animate({opacity:1},1200,"easeOutQuart");
	 		
	 		},delay);
	 		
	 		delay +=100;
	 		
	 		
	});
	
	} //end of ref
	
//end of scope	
});

