// JavaScript Document
$(document).ready(function(){
	jQuery("#vignette1").hover(function(){				   
    		jQuery("#vignette1 img")
            .animate({bottom:"12px"}, 200)
			},
			function(){
			jQuery("#vignette1 img")
            .animate({bottom:"-50px"}, 200)
			});

	jQuery("#vignette2").hover(function(){
        	jQuery("#vignette2 img")
            .animate({bottom:"12px"}, 200)
			},
			function(){
			jQuery("#vignette2 img")
            .animate({bottom:"-50px"}, 200)
			});
    
	jQuery("#vignette3").hover(function(){
        jQuery("#vignette3 img")
            .animate({bottom:"12px"}, 200)
			},
			function(){
			jQuery("#vignette3 img")
            .animate({bottom:"-50px"}, 200)
			});
	
	
}); 