$("#slide1").bind("mouseover", function ()	{ 	$("#"+this.id).animate(	{ opacity: 0.2	}, 1500 );		} 		  );
$("#slide1").bind("mouseout", function ()	{ 	$("#"+this.id).animate(	{ opacity: 1	}, 1500 );		} 		  );

$("#slide2").bind("mouseover", function ()	{ 	$("#"+this.id).animate(	{ opacity: 0.2	}, 1500 );		} 		  );
$("#slide2").bind("mouseout", function ()	{ 	$("#"+this.id).animate(	{ opacity: 1	}, 1500 );		} 		  );

$("#slide3").bind("mouseover", function ()	{ 	$("#"+this.id).animate(	{ opacity: 0.2	}, 1500 );		} 		  );
$("#slide3").bind("mouseout", function ()	{ 	$("#"+this.id).animate(	{ opacity: 1	}, 1500 );		} 		  );