// returnsOverlay.js
$(document).ready(function() {

	$('#helpVideo').overlay({expose: '#565656', closeSpeed: 1000, finish : {top:30},
	onBeforeLoad: function(){
		var source = $('#helpVideo').attr('source');
        var type = $('#helpVideo').attr('type');          
		var videoContent = $('#overlayVideoContent');
		var content = '<object width="710" height="427"><param name="movie" value="http://www.youtube.com/' + source + '&hl=en&fs=1&rel=0&autoplay=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/' + source + '&hl=en&fs=1&rel=0&autoplay=1" type="application/x-shockwave-flash" width="710" height="427" allowscriptaccess="always" allowfullscreen="true"></embed></object>';
		videoContent.html(content);
	},
	onBeforeClose: function(){
 		var videoContent = $('#overlayVideoContent');
	    var content = '';
	    videoContent.html(content);       
    }
    });

	$('#loadVideo').tooltip({position:['top', 'center'], tip: '#videoTip', offset:[8,0]});	
});
