
 var dName = window.location.hostname;
 
switch (dName){
	
case "www.nutrisystem.com":
   var omniAccount = "nutrisystemprod1";
break;

case "preview.nutrisystem.com":
   var omniAccount = "nutrisystemprod";
break;

case "www2.stage.nutrisystem.com":
  var omniAccount = "nutrisystemqa";
break;

case "www.stage.nutrisystem.com":
  var omniAccount = "nutrisystemqa";
break;

case "preview.stage.nutrisystem.com":
  var omniAccount = "nutrisystempreview";
break;

case "nhoa5lapd014.blue.ns":
  var omniAccount = "nutrisystemdev";
break;

case "nhoa5lapd028.blue.ns":
  var omniAccount = "nutrisystemdev";
break;

default : var omniAccount = "nutrisystemqamc";
}
 
 
 
 
$(function(){
      // start video player
      videoPlayer.init( {
            playlist : "/media/homepage-video-play-list.txt",
            username : "",
            useremail : "",
            omnitureAccount : omniAccount,
            omniturePageName : "SalesFun:Home",            
            omniturePageURL : window.location.href,
            pWidth:352, // Width of player
            pHeight:250, // Height of player
            defaultIndex : 0
      });
});

