 $(document).ready(function(){

	$("#ytover").hide();
	
	function close(){
		$("#ytover").hide();
	}
	
	$(".ytpop").click(function(){
			$("#ytover").html('<div class="topper"></div><div class="cont"><div class="wrap clearfix"><object width="425" height="344" class="img-left"><param name="movie" value="'+$(this).attr("href")+'&rel=0&autoplay=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="'+$(this).attr("href")+'&rel=0&autoplay=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object><div id="close"><a id="ytclose"><img src="/i/ytclose.png" alt="close" title="close"/></a></div><p><a href="http://cash-on-demand-workshop.com"><img src="/i/bootcamp-dvds.png" alt="Bootcamp DVDs now released" /></a></p></div></div><div class="ender"></div>');
			
		$("#ytover").show();
		
		$("#ytclose").bind("click", function(){	close(); 

$("#ytover").html('');
						});
		
		return false;
	});
	
 });
