$(document).ready(function() {

	$('.vidLink').click(function(){

		var id = $(this).attr('href');
		id = id.substring(1);
		var html = '<object width="433" height="277"><param name="movie" value="http://www.youtube.com/v/' + id + '&hl=en&fs=1&rel=0&autoplay=1"></param>';
		html += '<param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param>';
		html += '<embed src="http://www.youtube.com/v/' + id + '&hl=en&fs=1&rel=0&autoplay=1" type="application/x-shockwave-flash" allowscriptaccess="always" ';
		html += 'allowfullscreen="true" width="433" height="277"></embed></object>';
		$('#previewBox').html(html);

		return false;
	});
});

