﻿$(document).ready(function() {
    //$("#sectiontext").css("display", "none");
    //$("#sectiontext").fadeIn(2000); 
});

function showVideo()
{
var params = { allowScriptAccess: "always",wmode:"transparent"};
var atts = { id: "myytplayer"};
swfobject.embedSWF("http://www.youtube.com/v/"+defaultvideo+"?rel=0&enablejsapi=1&playerapiid=ytplayer&wmode=transparent&showsearch=0&showinfo=0", "ytapiplayer", "618", "335", "8", null, null, params, atts);
}

function onYouTubePlayerReady(playerId) {
      ytplayer = document.getElementById("myytplayer");
      
 
}

function playVideo(id)
{
    ytplayer.loadVideoById(id);
}


var url=window.location;  
var anchorvalue=url.hash.substring(1); //anchor without the # character  

showVideo();

if(anchorvalue!="" && anchorvalue != null)
{
    playVideo(anchorvalue);
}




