$(document).ready(function(){

/*
$("#menu a").mouseover(function(){
	$(this).animate({width:"110%"},200);
});
$("#menu a").mouseout(function(){
	$(this).animate({width:"100%"},200);
});
*/



$(".go_green").mouseover(function(){
	$(this).attr("src","http://btpellet.com//public/images/cycle/02.jpg");
});
$('.go_green').mouseout(function(){
	$(this).attr('src','http://btpellet.com/public/images/cycle/01.jpg');
});


});









