
$(document).ready(function(){

	var oWidth = $('img.resize').width();
	var oHeight = $('img.resize').height();
	var mpx = (oWidth / oHeight)+0.1;
	
	$('img.resize')
		.hover(function(){
			$(this)
				.stop().animate({
					/*width: (oWidth * mpx) +'px',
					height: (oHeight * mpx) +'px'*/
			marginTop: '-10px', 
			marginLeft: '0px',
			top: '0%',
			right: '0%',
			bottom:'20%',
			width: '130px', 
			padding: '0px'
				},500);
		},
		function(){
			$(this)
				.stop()
				.animate({
					/*width: oWidth +'px',
					height: oHeight +'px'*/
					
			marginTop: '0', 
			marginLeft: '0',
			top: '0',
			left: '0',
			width: '100px', 
			padding: '1px'
				},500);
		});
});
