 // BEGIN OMNITURE FUNCTIONS


function get_omni_account_number()

{
  var acct = "";
  // Sets the Acct ID to drseasons52staging if the site is stage,demo,beta and sets the account to drseasons52 is it is the production site
  if (location.host.indexOf("stage") != -1 || location.host.indexOf("demo") != -1 || location.host.indexOf("beta") != -1)
  {
	acct = "drseasons52staging";	
  }
	  
  else if (location.host.indexOf("seasons52.com") != -1)
  {
	acct = "drseasons52";	
  }

  if (location.search == '?check_omni_acct') alert(acct);
  return acct;
}


var js_server_path = location.pathname.replace('.asp','');
var js_pathparts = js_server_path.split("/");

function get_omni_content_cat(){
  var cat = "";
  // The info below needs to be updated per Seasons52
   
  if (location.href.indexOf('com/reservations') != -1 )  {
    cat = "Reservations";
  }
  else if (location.href.indexOf('com/about_us') != -1 )  {
    cat = "About Us";
  }
  else if (location.href.indexOf('com/video') != -1 || location.href.indexOf('video') != -1 )  {
    cat = "Videos";
  }
  else if (location.href.indexOf('com/contact') != -1 )  {
    cat = "Contact Us";
  }
  else if (location.href.indexOf('.com/legal') != -1 || location.href.indexOf('.com/faq.asp') != -1 || location.href.indexOf('.com/privacy_policy.asp') != -1 || location.href.indexOf('.com/search.asp') != -1){
    cat = "Web Info";
  }
  
  else{
    var content_categories = new Object;
    content_categories['menu'] = "Menu";
    content_categories['wine'] = "Wine";
    content_categories['media'] = "Media";
    content_categories['group_event'] = "Group Dining";
    content_categories['locations'] = "Locations";
    content_categories['marketplace'] = "Gift Cards";
	content_categories['careers'] = "Careers";
	content_categories['culinary'] = "Videos";


    var top_level_directory;
    top_level_directory = js_pathparts[1];
    if (content_categories[top_level_directory]){
      cat = content_categories[top_level_directory];
    }
    else if (js_pathparts[1].indexOf('Default') != -1 || js_pathparts[1].indexOf('default') != -1 || js_pathparts[1] == ''){
      cat = "Home Page";
    }
    else if (js_pathparts[2] == ""){
      cat = "Root";
    }
    else{
      cat = "Other";
    }
  }
if (location.search == '?check_omni_cat') alert(cat);
  return cat;
}

// END OMNITURE FUNCTIONS