$(function() {
	
	$("#YouTubeLink").click(function()
	  {
		viewTube('#YouTubeLink','http://www.youtube.com/v/3SHpVwW1S3s&#038;hl=en&#038;fs=1&#038;&#038;ap=%2526fmt%3D18','472','280');
	  });
	
	function viewTube(triggerID,movieURL,movieWth,movieHt) {
	  var embedcode = "<object width='" + movieWth + "&autostart=1' height='" + movieHt + "'>";
	  embedcode += "<param name='movie' value='" + movieURL + "'></param>";
	  embedcode += "<param name='wmode' value='transparent'></param>";
	  embedcode += "<embed src='" + movieURL + "&autoplay=1' type='application/x-shockwave-flash' wmode='transparent' width='" + movieWth + "' height='" + movieHt + "'></embed></object>";
	  $(triggerID).html(embedcode);
	  }
});