document.getElementsByClassName = function(cl) {
var retnode = [];
var myclass = new RegExp('\\b'+cl+'\\b');
var elem = this.getElementsByTagName('*');
for (var i = 0; i < elem.length; i++) {
var classes = elem[i].className;
if (myclass.test(classes)) retnode.push(elem[i]);
}
return retnode;
}; 

var intHide; 
var intShow; 

var url = location.href;
var urlVideo = url.indexOf("/video/") +7;
var urlRegen = url.indexOf("?regen=true");

if(urlRegen > 0){
	var urlCategory = url.substring(urlVideo,urlRegen);
}
else{
	var urlCategory = url.substring(urlVideo,url.length);
}

function show(menu) { 
  document.getElementById(menu).style.display = "block"; 
  document.getElementById(menu).style.zIndex = 999; 
} 
function showMore(menu) { 
  clearInterval(intHide); 
  intShow = setInterval("show('" + menu + "')",100); 
} 
function hide(menu) { 
  document.getElementById(menu).style.display = "none"; 
} 
function hideMore(menu) { 
  clearInterval(intShow); 
  intHide = setInterval("hide('" + menu + "')",100); 
}

function changeGallery (vidCategory, more) {
  if (more) {
    var newTab = document.getElementById("vc_gallery_tab_"+more);
  } else {
    var newTab = document.getElementById("vc_gallery_tab_"+vidCategory);
  }
  var oldTab = document.getElementsByClassName("vc_gallery_tab_on");

  oldTab[0].className = "vc_gallery_tab_off";
  newTab.className = "vc_gallery_tab_on";
  
  var galleryWidgetOneQuery = "";
  var galleryWidgetTwoQuery = "";
  var galleryWidgetOneCSS = "http://msn.foxsports.com/component/cssjs/VideoCentralGallery1" + vidCategory;
  var galleryWidgetTwoCSS = "http://msn.foxsports.com/component/cssjs/VideoCentralGallery2" + vidCategory;
  
  if (vidCategory == "Whats_Hot") {
    galleryWidgetOneQuery = "videoByTag.aspx?tag=top%20news&ns=Fox%20Sports_Gallery&mk=us&vs=1";
    galleryWidgetTwoQuery = "videoByTag.aspx?tag=Fox Sports&ns=MSNVideo_Top_Cat&mk=us&sf=HourlyCount&st=1&sd=-1&ns=VC_Supplier&vs=0";
  } else if (vidCategory == "Best_Damn") {
    galleryWidgetOneQuery = "videoByTag.aspx?tag=fox sports_best damn sports show video&ns=MSNVideo_Top_Cat&mk=us&sf=HourlyCount&sd=-1&vs=0";
    galleryWidgetTwoQuery = "videoByTag.aspx?tag=fox sports_best damn sports show video&ns=MSNVideo_Top_Cat&mk=us&sf=ActiveStartDate&sd=-1&vs=0";
  } else if (vidCategory == "NFL") {
    galleryWidgetOneQuery = "videoByTag.aspx?tag=nfl&ns=Fox%20Sports_Gallery&mk=us&vs=1";
    galleryWidgetTwoQuery = "videoByTag.aspx?tag=Fox Sports_NFL News&ns=MSNVideo_Top_Cat&mk=us&sd=-1&sf=ActiveStartDate&vs=0";
  } else if (vidCategory == "NFL_on_FOX") {
    galleryWidgetOneQuery = "videoByTag.aspx?tag=nflonfox&ns=Fox%20Sports_Gallery&mk=us&vs=1";
    galleryWidgetTwoQuery = "videoByTag.aspx?tag=nflonfox&ns=MSNVideo_Top_Cat&mk=us&sd=-1&sf=ActiveStartDate&vs=0";
  } else if (vidCategory == "NFL_Draft") {
    galleryWidgetOneQuery = "videoByTag.aspx?tag=nfl draft&ns=Fox%20Sports_Gallery&mk=us&vs=1";
    galleryWidgetTwoQuery = "videoByTag.aspx?tag=nfl draft&ns=Fox%20Sports_Gallery&mk=us&sd=-1&sf=ActiveStartDate&vs=0";
  } else if (vidCategory == "MLB") {
    galleryWidgetOneQuery = "videoByTag.aspx?tag=baseball&ns=Fox%20Sports_Gallery&mk=us&vs=1";
    galleryWidgetTwoQuery = "videoByTag.aspx?tag=fox sports_baseball news&ns=MSNVideo_Top_Cat&mk=us&sd=-1&sf=ActiveStartDate&vs=0";
  } else if (vidCategory == "NBA") {
    galleryWidgetOneQuery = "videoByTag.aspx?tag=nba&ns=Fox%20Sports_Gallery&mk=us&vs=1";
    galleryWidgetTwoQuery = "videoByTag.aspx?tag=Fox Sports_NBA news&ns=MSNVideo_Top_Cat&mk=us&sd=-1&sf=ActiveStartDate&vs=0";
  } else if (vidCategory == "NHL") {
    galleryWidgetOneQuery = "videoByTag.aspx?tag=fox Sports_hockey news&ns=MSNVideo_Top_Cat&mk=us&sd=-1&sf=HourlyCount&vs=0";
    galleryWidgetTwoQuery = "videoByTag.aspx?tag=fox sports_hockey news&ns=MSNVideo_Top_Cat&mk=us&sf=ActiveStartDate&vs=0";
  } else if (vidCategory == "NASCAR") {
    galleryWidgetOneQuery = "videoByTag.aspx?tag=nascar&ns=Fox%20Sports_Gallery&mk=us&vs=1";
    galleryWidgetTwoQuery = "videoByTag.aspx?tag=fox sports_motorsports&ns=MSNVideo_Top_Cat&mk=us&sf=ActiveStartDate&vs=0";
  } else if (vidCategory == "CFB") {
    galleryWidgetOneQuery = "videoByTag.aspx?tag=college football&ns=Fox%20Sports_Gallery&mk=us&vs=1";
    galleryWidgetTwoQuery = "videoByTag.aspx?tag=fox sports_college fb news&ns=MSNVideo_Top_Cat&mk=us&sf=ActiveStartDate&vs=0";
  } else if (vidCategory == "CBK") {
    galleryWidgetOneQuery = "videoByTag.aspx?tag=cbk&ns=Fox%20Sports_Gallery&mk=us&vs=1";
    galleryWidgetTwoQuery = "videoByTag.aspx?tag=fox sports_college bk news&ns=MSNVideo_Top_Cat&mk=us&sf=ActiveStartDate&vs=0";
  } else if (vidCategory == "Hoops_Hysteria") {
    galleryWidgetOneQuery = "videoByTag.aspx?tag=hoopshysteria2010&ns=Fox%20Sports_Gallery&mk=us&vs=0 ";
    galleryWidgetTwoQuery = "videoByTag.aspx?tag=hoopshysteria2010&ns=Fox%20Sports_Gallery&mk=us&sd=-1&sf=ActiveStartDate&vs=0 ";
  } else if (vidCategory == "LWB") {
    galleryWidgetOneQuery = "videoByTag.aspx?tag=lwb&ns=Fox%20Sports_Gallery&mk=us&vs=1";
    galleryWidgetTwoQuery = "videoByTag.aspx?tag=lwb&ns=Fox%20Sports_Gallery&mk=us&sd=-1&sf=ActiveStartDate&vs=0";
  } else if (vidCategory == "FSWest") {
    galleryWidgetOneQuery = "videoByTag.aspx?tag=fs%20west&ns=Fox%20Sports_Gallery&mk=us&vs=1";
    galleryWidgetTwoQuery = "videoByTag.aspx?tag=fs%20west%20all&ns=Fox%20Sports_Gallery&mk=us&sd=-1&sf=ActiveStartDate&vs=0";
  } else if (vidCategory == "FOXSoccer") {
    galleryWidgetOneQuery = "videoByTag.aspx?tag=fox sports_premierleague&ns=MSNVideo_Top_Cat&mk=us&sd=-1&sf=HourlyCount&vs=0";
    galleryWidgetTwoQuery = "videoByTag.aspx?tag=fox sports_premierleague&ns=MSNVideo_Top_Cat&mk=us&sf=ActiveStartDate&vs=0";
  } else if (vidCategory == "MMA_Boxing") {
    galleryWidgetOneQuery = "videoByTag.aspx?tag=fox Sports_fight video&ns=MSNVideo_Top_Cat&mk=us&sd=-1&sf=HourlyCount&vs=0";
    galleryWidgetTwoQuery = "videoByTag.aspx?tag=fox sports_fight video&ns=MSNVideo_Top_Cat&mk=us&sf=ActiveStartDate&sd=-1&vs=0";
  } else if (vidCategory == "Fantasy") {
    galleryWidgetOneQuery = "videoByTag.aspx?tag=fox Sports_fantasy_video&ns=MSNVideo_Top_Cat&mk=us&sd=-1&sf=HourlyCount&vs=0";
    galleryWidgetTwoQuery = "videoByTag.aspx?tag=fox sports_fantasy_video&ns=MSNVideo_Top_Cat&mk=us&sf=ActiveStartDate&sd=-1&vs=0";
  } else if (vidCategory == "SPEED_Channel") {
    galleryWidgetOneQuery = "videoByTag.aspx?tag=fox sports_motorsports_speed&ns=MSNVideo_Top_Cat&mk=us&sd=-1&sf=HourlyCount&vs=0";
    galleryWidgetTwoQuery = "videoByTag.aspx?tag=fox sports_motorsports_speed&ns=MSNVideo_Top_Cat&mk=us&sf=ActiveStartDate&sd=-1&vs=0";
  } else if (vidCategory == "Golf") {
    galleryWidgetOneQuery = "videoByTag.aspx?tag=golf&ns=Fox%20Sports_Gallery&mk=us&vs=1";
    galleryWidgetTwoQuery = "videoByTag.aspx?tag=fox sports_golf&ns=MSNVideo_Top_Cat&mk=us&sf=ActiveStartDate&sd=-1&vs=0";
  } else if (vidCategory == "Tennis") {
    galleryWidgetOneQuery = "videoByTag.aspx?tag=tennis&ns=Fox%20Sports_Gallery&mk=us&vs=1";
    galleryWidgetTwoQuery = "videoByTag.aspx?tag=tennis&ns=Fox%20Sports_Gallery&mk=us&sd=-1&sf=ActiveStartDate&vs=0";
  } else if (vidCategory == "Fuel_TV") {
	  galleryWidgetOneQuery = "videoByTag.aspx?tag=fox sports_action_fuel&ns=MSNVideo_Top_Cat&mk=us&sf=HourlyCount&sd=-1&vs=0";
	  galleryWidgetTwoQuery = "videoByTag.aspx?tag=fox sports_action_fuel&ns=MSNVideo_Top_Cat&mk=us&sf=ActiveStartDate&sd=-1&vs=0";
	} else if (vidCategory == "AVP_Beach_Volleyball") {
	  galleryWidgetOneQuery = "videoByTag.aspx?tag=fox sports_avp beach volleyball&ns=MSNVideo_Top_Cat&mk=us&sf=HourlyCount&sd=-1&vs=0";
	  galleryWidgetTwoQuery = "videoByTag.aspx?tag=fox sports_avp beach volleyball&ns=MSNVideo_Top_Cat&mk=us&sf=ActiveStartDate&sd=-1&vs=0";
	} else if (vidCategory == "Olympic_Sports") {
	  galleryWidgetOneQuery = "videoByTag.aspx?tag=olympics&ns=Fox%20Sports_Gallery&mk=us&vs=1";
	  galleryWidgetTwoQuery = "videoByTag.aspx?tag=olympics&ns=Fox%20Sports_Gallery&mk=us&sd=-1&sf=ActiveStartDate&vs=0";
	} else if (vidCategory == "Sports_Science") {
    galleryWidgetOneQuery = "videoByTag.aspx?tag=sports science&ns=Fox Sports_Gallery&mk=us&sf=HourlyCount&sd=-1&vs=0";
    galleryWidgetTwoQuery = "videoByTag.aspx?tag=sports science&ns=Fox Sports_Gallery&mk=us&sf=ActiveStartDate&sd=-1&vs=0";
	} else if (vidCategory == "Sports_Business") {
	  galleryWidgetOneQuery = "videoByTag.aspx?tag=fox sports_horrow&ns=MSNVideo_Top_Cat&mk=us&sf=HourlyCount&sd=-1&vs=0";
	  galleryWidgetTwoQuery = "videoByTag.aspx?tag=fox sports_horrow&ns=MSNVideo_Top_Cat&mk=us&sf=ActiveStartDate&sd=-1&vs=0";
	} else if (vidCategory == "In_My_Own_Words") {
	  galleryWidgetOneQuery = "search.aspx?q=IMOW&ns=MSNVideo_Top_Cat&mk=us&sf=HourlyCount&sd=-1&vs=0";
	  galleryWidgetTwoQuery = "search.aspx?q=IMOW&ns=MSNVideo_Top_Cat&mk=us&sf=ActiveStartDate&sd=-1&vs=0";
  } else if (vidCategory == "Red_Bull") {
    galleryWidgetOneQuery = "videoByTag.aspx?tag=redbull&ns=Fox%20Sports_Gallery&mk=us&vs=1";
    galleryWidgetTwoQuery = "videoByTag.aspx?tag=redbull&ns=Fox%20Sports_Gallery&mk=us&sd=-1&sf=ActiveStartDate&vs=0";
	} else if (vidCategory == "More") {
    galleryWidgetOneQuery = "videoByTag.aspx?tag=fox sports_more fox sports&ns=MSNVideo_Top_Cat&mk=us&sf=HourlyCount&sd=-1&vs=0";
    galleryWidgetTwoQuery = "videoByTag.aspx?tag=fox sports_more fox sports&ns=MSNVideo_Top_Cat&mk=us&sf=ActiveStartDate&sd=-1&vs=0";
  }
  
  if ((vidCategory == "Whats_Hot") || (vidCategory == "CBK") || (vidCategory == "LWB") || (vidCategory == "FSWest") || (vidCategory == "NFL_Draft") || (vidCategory == "MMA_Boxing") || (vidCategory == "SPEED_Channel") || (vidCategory == "Golf") || (vidCategory == "Tennis") || (vidCategory == "Fuel_TV") || (vidCategory == "AVP_Beach_Volleyball") || (vidCategory == "Olympic_Sports") || (vidCategory == "Sports_Science") || (vidCategory == "Sports_Business") || (vidCategory == "In_My_Own_Words") || (vidCategory == "Red_Bull") || (vidCategory == "More") || (vidCategory == "Hoops_Hysteria")) {
    galleryWidgetOneCSS = "http://msn.foxsports.com/component/cssjs/VideoCentralGallery1Default";
    galleryWidgetTwoCSS = "http://msn.foxsports.com/component/cssjs/VideoCentralGallery2Default";
  } 
  
  //Gallery Widget 1
  Msn.Video.BuildGallery('vc_gallery_container1', 932, 230, {"gallery.defaultVidId": "", "cssPath": galleryWidgetOneCSS, "gallery.allowedViews": "Grid;", "gallery.autoLoadVideo": "continuous", "gallery.brand": "foxsports", "gallery.categoryNames": "What's Hot;", "gallery.categoryRequests":  galleryWidgetOneQuery, "gallery.defaultView": "Grid", "gallery.dispDescriptionGrid": "true", "gallery.dispSourceGrid": "false", "gallery.linkbackLocation": "hidden", "gallery.logoImage": "", "gallery.numColsDetail": "6", "gallery.numColsGrid": "6", "gallery.numColsList": "6", "gallery.numRowsDetail": "1", "gallery.numRowsList": "1", "gallery.pageControlsLocation": "bottom_right", "gallery.pageInfoLocation": "bottom_right", "gallery.playType": "inline", "gallery.searchInNewTab": "true", "gallery.from": "gallerywidget_en-us_foxpsorts_videocentral"}, 'Gallery3', 'http://images.video.msn.com/flash/gallerywidget/1_0/gallerywidget.swf', '');

  //Gallery Widget 2
  Msn.Video.BuildGallery('vc_gallery_container2', 932, 495, {"gallery.defaultVidId": "", "cssPath": galleryWidgetTwoCSS, "gallery.allowedViews": "Detail", "gallery.autoLoadVideo": "continuous", "gallery.brand": "foxsports", "gallery.categoryNames": "What's Hot;", "gallery.categoryRequests": galleryWidgetTwoQuery, "gallery.cs": "fox sports", "gallery.categoryMenuLocation": "hidden", "gallery.dispDescriptionDetail": "true", "gallery.dispDescriptionGrid": "true", "gallery.dispDescriptionList": "true", "gallery.dispSourceDetail": "false", "gallery.dispSourceGrid": "false", "gallery.dispSourceList": "false", "gallery.linkbackLocation": "hidden", "gallery.logoImage": "", "gallery.sortMenuLocation": "top_left", "gallery.sortMenuOptions": "most_recent;views", "gallery.sortTimeMenuLocation": "right", "gallery.numColsDetail": "3", "gallery.numColsList": "3", "gallery.numRowsDetail": "5", "gallery.numRowsGrid": "5", "gallery.pageControlsLocation": "bottom_right", "gallery.pageInfoLocation": "bottom_right", "gallery.playType": "inline", "gallery.searchBoxLocation": "top_right", "gallery.showPlaylist": "false", "gallery.tabPlayer": "false", "gallery.from": "gallerywidget_en-us_foxpsorts_videocentral"}, 'Gallery4', 'http://images.video.msn.com/flash/gallerywidget/1_0/gallerywidget.swf', '');
}

if(urlCategory != "" && urlVideo != 6){
	if((urlCategory == "CBK") || (urlCategory == "SPEED_Channel") || (urlCategory == "Golf") || (urlCategory == "Tennis") || (urlCategory == "MMA_Boxing") || (urlCategory == "Red_Bull") || (urlCategory == "Fuel_TV") || (urlCategory == "AVP_Beach_Volleyball") || (urlCategory == "Olympic_Sports") || (urlCategory == "Sports_Business") || (urlCategory == "In_My_Own_Words") || (urlCategory == "More")){
    	fsAWLLoadFunction({func:'changeGallery(urlCategory,"More")'});
    }
    else{
  		fsAWLLoadFunction({func:'changeGallery(urlCategory)'});
    }
}
