var height = 360;
var width = 640;
$(document).ready(function() {
    $('.show-video').click(function(elem){
		$('.ds-overlay-lt').html(
			'<object width="'+ width+'" height="'+ height+'">'
			+	'<param name="movie" value="http://www.youtube.com/v/'+this.title+'&hl=en&fs=1&rel=0&showinfo=0"></param>'
			+	'<param name="allowFullScreen" value="true"></param>'
			+	'<param name="wmode" value="transparent"></param>'
			+	'<param name="allowscriptaccess" value="always"></param>'
			+	'<embed src="http://www.youtube.com/v/'+this.title+'&hl=en&fs=1&showinfo=0&rel=0" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" wmode="transparent" width="'+width+'" height="'+height+'"></embed>'
			+'</object>'
		);
		return false;
	});
});

