// JavaScript Document
jQuery(function($){
						   
$('.nav-hover').mouseenter(function(){
	$(this).css({
		'width':$('img',this).width(),
		'height':$('img',this).height()
	})
	$('img',this).stop(true, true).fadeOut();
}).mouseleave(function(){
	$('img',this).stop(true, true).fadeIn();
});

});
