$(document).ready(function(){
	$(function(){
		$("img.grow").hover( function() {
			$(this).css('position','absolute');
			$(this).css('top','0');
			$(this).css('right','0');
			$(this).css('cursor','crosshair');
			$(this).css('display','inline-block');
//			$(this).css('z-index','1');
			$(this).animate({
				width: '600px',
				height: '500px'
		}, 1000);
	}, function() {
		$(this).animate({
			width: '300px',
			height: '250px'
		}, 1000,function(){
//			$(this).css('position','relative');
			$(this).css('display','inline');
//			$(this).css('z-index','0');
			});
		});    
	});

	$(function(){
		$("img.grow400").hover( function() {
			$(this).css('position','absolute');
			$(this).css('top','0');
			$(this).css('right','0');
			$(this).css('cursor','crosshair');
			$(this).css('display','inline-block');
//			$(this).css('z-index','1');
			$(this).animate({
				width: '600px',
				height: '400px'
		}, 1000);
	}, function() {
		$(this).animate({
			width: '300px',
			height: '200px'
		}, 1000,function(){
//			$(this).css('position','relative');
			$(this).css('display','inline');
//			$(this).css('z-index','0');
			});
		});    
	});

	$(function(){
		$("img.grow770").hover( function() {
			$(this).css('position','absolute');
			$(this).css('top','0');
			$(this).css('right','0');
			$(this).css('cursor','crosshair');
			$(this).css('display','inline-block');
//			$(this).css('z-index','1');
			$(this).animate({
				width: '600px',
				height: '770px'
		}, 1000);
	}, function() {
		$(this).animate({
			width: '300px',
			height: '385px'
		}, 1000,function(){
//			$(this).css('position','relative');
			$(this).css('display','inline');
//			$(this).css('z-index','0');
			});
		});    
	});

	$(function(){
		$("img.grow804").hover( function() {
			$(this).css('position','absolute');
			$(this).css('top','0');
			$(this).css('right','0');
			$(this).css('cursor','crosshair');
			$(this).css('display','inline-block');
//			$(this).css('z-index','1');
			$(this).animate({
				width: '600px',
				height: '804px'
		}, 1000);
	}, function() {
		$(this).animate({
			width: '300px',
			height: '402px'
		}, 1000,function(){
//			$(this).css('position','relative');
			$(this).css('display','inline');
//			$(this).css('z-index','0');
			});
		});    
	});

});

