$(document).ready(function(){
	$("#maincontent a.mediaclick").click(function(){
		var h, w, nh, nw;
		$("#imageplace").html();
		imageSource = $(this).attr("href");
		var newImg = new Image();
		newImg.src = imageSource;
		$(newImg).load(function(){
			nh = newImg.height/2;
			nw = newImg.width/2;
			h=Math.floor(166-nh)
			w=Math.floor(162-nw)
			//alert ('<img src="'+ imageSource +'" style="margin-top:'+h+'px; margin-left:'+w+'px" />');
			$("#imageplace").html('<img src="'+ imageSource +'" style="margin-top:'+h+'px; margin-left:'+w+'px" />')
		});
		return false;
	});
});