$(document).ready(function()
{
	$('.gallery img').mouseover(function() {
		$(this).clearQueue().animate({"opacity": 1}, 400);
	});
	$('.gallery img').mouseout(function() {
		$(this).clearQueue().animate({"opacity": 0.9}, 400);
	});
});
