jQuery(document).ready(function()
{
//alert(console.toSource())
	
	
	var roll = new Image();
	roll.src = '/pix/visuels/visuels-home-6-on.jpg';
	
	var defaultSrc = jQuery('p.follow img').attr('src');
	
	jQuery('p.follow img').hover(function()
	{
		jQuery(this).attr('src',roll.src);
	},
	function()
	{
		jQuery(this).attr('src',defaultSrc);
	})
});
