$(document).ready(function(){mod_banner_set_frame();});
$(window).load(function(){mod_banner_set_frame();});
function mod_banner_set_frame(){
	$('div.mod_banner_img_con').each(function(){
		var height = $(this).find('img').innerHeight();
		$(this).css({'height':height+'px'});
		var correctionheight=$(this).outerHeight(true)-parseInt($(this).css('border-top-width'))-parseInt($(this).css('border-bottom-width')) + 15;
		var overlay = $(this).parent().find('div.mod_banner_overlay');
		var behavior = $(overlay).css('behavior');
		$(overlay).css({'height':correctionheight+'px','margin-top':'-'+correctionheight+'px','behavior':'packs/css3pie/pie.htc'});
	});
};
