$(document).ready(function(){
    Slider();
    Menu();
	
	
});


this.Menu = function(){


    $('#menuRight a').click(function(){
    
        $('#content').find('.lang').css('display', "none");
        $('#content').find('.ita').css('display', "none");
        $('#content').find('.eng').fadeIn("fast");
        
    });
    
    $('#menuLeft a').click(function(){
        $('#content').find('.lang').css('display', "none");
        $('#content').find('.eng').css('display', "none");
        $('#content').find('.ita').fadeIn("fast");
        
    });
    
}

this.Slider = function(){

    var pos = -156;
    
    $('*').find('.topDiv').animate({
        top: pos
    }, {
        queue: false,
        duration: 2500
    });
    $('*').find('.bottomDiv').animate({
        bottom: pos
    }, {
        queue: false,
        duration: 2500
    
    });
    
}






