$(function() {
// setup overlay actions to link
	$("a[rel]").overlay({

	   top: 70, 
			
		// some expose tweaks suitable for modal dialogs 
		expose: { 
			color: '#000000', 
			loadSpeed: 200, 
			opacity: 0.7 
		},
		
		onLoad: function(content) {
			// find the player contained inside this overlay and load it
			this.getOverlay().find("a.player").flowplayer(0).load();
		},
		
		onClose: function(content) {
			$f().unload();
		}, 
    closeOnClick: true 
	});				
// install flowplayers
	$("a.player").flowplayer("http://www.mindyourownmortgage.com/swf/flowplayer.commercial-3.2.2.swf",  {
	// product key from your account
	key: '#$8bf73bd62ad06f2792c',
	
	canvas: {
   backgroundColor: '#000000',
   backgroundGradient: 'none'
}

});
			
		
});