		$(function () {
			$(".box").each(function () {
			
				$(this).mouseover(function () {
					var img = $('img', this);
					s=img.attr("src").replace(/\.([a-zA-Z]+)$/i, "Hover.$1");
					img.attr("src", s);
					
					var div = $('.show', this);
					div.css({display:'block', width: img.attr("width")-32});
					
					var table = $('table', this);
					table.attr('width', img.attr("width"));

				}).mouseout(function () {
					var img = $('img', this);
					s = img.attr("src").replace(/Hover\.([a-zA-Z]+)$/i, ".$1");
					img.attr("src", s);
					
					var div = $('.show', this);
					div.css({display:'none'});
				});
			});
		});
