$(document).ready(function(){

$("img.bigimage").load(function () {
var imgWidth = $("img.bigimage").width();
$("span#imgwidth").html(imgWidth+"px");

var imgHeight = $("img.bigimage").attr("height");
$("span#imgheight").html(imgHeight+"px");


});
});


