function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}

$(document).ready( function(){
	$("div.image").each(function(){
		var w = 0;
		$(this).find("img").each(function(){w = Math.max(w,this.width);});
		$(this).width(w);
		$(this).find("span").css("display","block");
	});
});

