﻿addDOMLoadEvent(function() {

	$("div.cmsGroup").each(function() {
		var h = $(this).outerHeight()-22;
		var w = $(this).outerWidth()-14;
		$(this).prepend("<div class='groupframe1' style='height:"+h+"px;width:"+w+"px;'><div class='groupframetop'><div class='groupframeright'>&nbsp;</div><div class='groupframeleft'>&nbsp;</div></div></div>");
		$(this).prepend("<div class='groupframe2' style='height:"+h+"px;width:"+w+"px;'><div class='groupframebottom' style='width:"+w+"px;'><div class='groupframeright'>&nbsp;</div><div class='groupframeleft'>&nbsp;</div></div></div>");

	});

	$('#content div.cmsGroup').each( function() {
		$(this).onImagesLoad({ 
			selectorCallback: selectorImagesLoaded 
		});
	});

    function selectorImagesLoaded($selector){
		var h = $($selector).outerHeight()-22;
		if ( document.all && !window.opera && !window.XMLHttpRequest && $.browser.msie ) h+=12;
		$('div.groupframe1',$selector).css("height", h);
		$('div.groupframe2',$selector).css("height", h);
    } 
});
