	

	/* Change background on some hovered paragraphs */
	$(document).ready(function()
		{
	    $('div.content_unit p').hover(function () {
	      	$(this).css({backgroundColor:'#fff', backgroundImage:'none'});
	    	}, function () {
	       $(this).css({backgroundColor:'transparent', backgroundImage:'url(http://www.pagerie.com/media/fond-paragraphes.jpg)'});
	    });
	    
	    
	/* Change background on hovered unordered lists */	    
	    $('div.content_unit dl').hover(function () {
	      	$(this).css({backgroundColor:'#fff', backgroundImage:'none'});
	    	}, function () {
	       $(this).css({backgroundColor:'transparent', backgroundImage:'url(http://www.pagerie.com/media/fond-paragraphes.jpg)'});
	    });
	    
	/* Change background on hovered buttons */	    
	    $('button').hover(function () {
	      	$(this).css({backgroundColor:'#fff', backgroundImage:'url(http://www.pagerie.com/media/fond-boutons-actifs.jpg)'});
	    	}, function () {
	       $(this).css({backgroundColor:'transparent', backgroundImage:'url(http://www.pagerie.com/media/fond-boutons.jpg)'});
	    });




	    
	    
	    
	    
	}); // end document.ready
	
	
