//CONTROLLING EVENTS IN jQuery
$(document).ready(function(){
		
	// if the ab_framework is active, place the overlay to the bottom
	if ( $("div.framework_page_header").length > 0 ) { 
	    var xt = $("div.framework_page_header").get(0);
	    
	    $("#backgroundPopupVisible").css({
		    "top": xt.offsetHeight + "px"
	    });
	}

});