$(document).ready(function()
{
	
	var duration = 200;
	
	function animateMe(e, o)
	{
		$(e).animate({
							opacity: o
					  	},
					  	duration
					  	);
	}
	
	$(".window .img").mouseover(function()
	{
		animateMe(this, 0);
		/*
$(this).animate({
							opacity: 0
					  	},
					  	duration
					  	);
*/
	});
	
	$(".window .img").mouseout(function()
	{
		animateMe(this, 1);
		/*
$(this).animate({
							opacity: 1
					  	},
					  	duration
					  	);
*/
	});
	
});
