
jQuery(document).ready(function(){
jQuery(".container").hide();
jQuery('.imgLink').each(function(){
var img=new Image();
var _height="";
var objImageLink=$(this);
$(img).load(function() {
_height=this.height;
jQuery(objImageLink).parent().parent().css("height", _height +'px');	
}).attr("src",$(this).attr("src"));
});
});



