// JavaScript Document
$(document).ready(function(){
	$('.image img').css('opacity','0.1');

	$('.image').mouseenter(function(){
		$('img',this).stop().animate({'opacity':'1'},500);
		$(this).delay(250).css('z-index','50');
	}).mouseleave(function(){
		$('img',this).stop().animate({'opacity':'0.1'},500);
		$(this).delay(400).css('z-index','10');
	});
});