



$(document).ready(function(){
						   
						   
						   
	$(this).find('#left-button').delay(2000).fadeIn(700);
 	$(this).find('#right-button').delay(2000).fadeIn(700);
	$(this).find('.center').delay(1000).fadeIn(700);
	


    $(".buttons #left-button").hover(function(){
        $(this).stop().animate({marginLeft : "-15px"},200,"swing");},
        function(){
        $(this).stop().animate({marginLeft : "0px"},200,"swing");}
        
    );

		
	$(".buttons #right-button").hover(function(){
        $(this).stop().animate({marginRight : "-15px"},200,"swing");},
        function(){
        $(this).stop().animate({marginRight: "0px"},200,"swing");}
        
    );
	
	
    $('.center-button-link').hover(function()
        {
            $(this).find('.img2').fadeIn('slow');
        },
        function()
        {
            $(this).find('.img2').fadeOut('slow');
        }
    );
	




});
