	$(document).ready(function(){
			$("div#vodcast-video ul.tabs li a").click(function(event){
				event.preventDefault();		
				if ($(this).hasClass("active"))	{
					return true;
				}
				else	{
					var showThis = $(this).parent().attr("class");
					$("div#vodcast-video ul.tabs li a.active").removeClass("active");
					$(this).addClass("active");
					$("div#vodcast-video div.tab-content:visible").fadeOut("fast");
					$("div#vodcast-video div#"+showThis).fadeIn("fast");
					
					if (showThis == "video")	{
						video_one();	
					}
					if (showThis == "vodcast")	{
						video_two();	
					}
					
				}
			 });	
		});