// Open YouTube Video Player onClick of YouTube URL
$(document).ready(function(){
	$('.youTube').click(function(){
		var url = $(this).attr('url');
		var id = $(this).attr('id');
		$(this).after('<div class="youTubeVideo"><div id="youTubeVideoSWF' + id + '"></div><div class="youTubeVideoInformation"><a href="' + $(this).attr('origurl') + '" target="_blank">' + $(this).attr('origurl') + '</a></div></div>');
		var so = new SWFObject(url, "YouTubeVideo", '425', '344', '9', "#ffffff");
		so.write('youTubeVideoSWF' + id);
		$('#youTubeVideoSWF' + id).parent().slideDown();
		$(this).remove();
	});
});