jQuery(document).ready(function($){
	$("a.modal-link").overlay({ 
		expose: {
			color: '#fff',
			loadSpeed: 200,
			opacity: 0.9
		},
	 
		onBeforeLoad: function() { 
			// grab wrapper element inside content 
		   var wrap = this.getContent().find(".video-container"); 
	 
		   // load the page specified in the trigger 
			wrap.load(this.getTrigger().attr("href")); 
		} 
	}); 
});
