	
  
  	function thisMovie(movieName) {
			if (navigator.appName.indexOf("Microsoft") != -1) {
				return window[movieName]
			}
			else {
				return document[movieName];
			}
		}
		
		function playVid(vidURL,elmtDescription){
			/*load movie*/
      var blah = thisMovie("gb_player").playvideo(vidURL);
			
			/*change description*/
      var small_description = document.getElementById(elmtDescription);
			var main_description = document.getElementById('featuredVideoDescription');
			
      if (small_description){
        
        if(main_description){
          main_description.innerHTML = small_description.innerHTML;
          
          
          eChildrenArr = main_description.childNodes;
          for (var i=0; i < eChildrenArr.length; i++){
            if (eChildrenArr[i].className == 'longDesc'){
              eChildrenArr[i].style.display = "block";
            }
            if (eChildrenArr[i].className == 'shortDesc'){
              eChildrenArr[i].style.display = "none";
            }
          }
       }
        
      }
      

		}
