$(document).ready(function(){
	resizeNewestProductImage(120);
});

function resizeNewestProductImage(newwidth){
	var width = $('#newestproduct img').width();
	var height = $('#newestproduct img').height();
	var ratio = height/width;
	height = newwidth * ratio;
	$('#newestproduct img').height(height).width(newwidth);
}
