$(document).ready(function() 
{
	
	$("#mentionsOverlay").overlay({ 
		absolute : true,
		speed : 'normal',
		onBeforeLoad: function() { 
 
			// grab wrapper element inside content 
			var wrap = this.getContent().find("div.wrap"); 
 
			// load the page specified in the trigger 
			wrap.load(this.getTrigger().attr("href")); 
		} 
	}); 
	
});
