$(document).ready(function(){

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


//Page Flip on hover

	$("#pageflip").hover(function() {
		$("#pageflip img.peel").stop()
			.animate({
				width: '307px', 
				height: '319px'
			}, 500); 
		$("#pageflip .msg_block").stop()
			.animate({
				width: '307px', 
				height: '307px'
			}, 500); 
		} , function() {
		$("#pageflip img.peel").stop() 
			.animate({
				width: '50px', 
				height: '52px'
			}, 220);
		$(".msg_block").stop() 
			.animate({
				width: '50px', 
				height: '50px'
			}, 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');
});


});










