﻿var objLocationURL = new String(document.location);
	
	var homePage = objLocationURL.indexOf("index");
	
	/*
	var aboutCelebrex = objLocationURL.indexOf("about_CELEBREX");
	var understandRisks = objLocationURL.indexOf("Understand_the_Risks");
	var feelBenefits = objLocationURL.indexOf("Feel_the_Benefits");
	var celebrexRight = objLocationURL.indexOf("IsCELEBREXRightforYou");
	var howTo = objLocationURL.indexOf("HowtoTakeCelebrex");
	var whatNSAID = objLocationURL.indexOf("WhatisanNSAID");
	var workingDoctor = objLocationURL.indexOf("Working_With_Your_Doctor");
	var questionsDoctor = objLocationURL.indexOf("Questions_for_Your_Doctor");
	var faqs = objLocationURL.indexOf("FAQs");
	*/
	
	var sPath = window.location.pathname;
	var sPage = sPath.substring(sPath.lastIndexOf('/') + 1);
	sPage = sPage.substring(0,sPage.length-5)


    $(document).ready(function() {

	
	// If user is on the this page
    //Set the click function of 'Next Section' button for custom link tracking

	if (homePage != -1) {
 			
 			$("a#Wizard1_hlkNextPageNode").click(function () { 
            s.pageName = "Home Page  > " + $("a#Wizard1_hlkNextPageNode").attr("title");
			s.tl($("a#Wizard1_hlkNextPageNode"),'o');
		
	    });

	  
	  } else {
	  
	  		$("a#ctl00_ContentPlaceHolder1_Wizard1_hlkNextPageNode").click(function () { 
            s.pageName = sPage + " > " + $("a#ctl00_ContentPlaceHolder1_Wizard1_hlkNextPageNode").attr("title");
			s.tl($("a#ctl00_ContentPlaceHolder1_Wizard1_hlkNextPageNode"),'o');
	    
	    });
	  
	  }
	  
	  /*
	  
	  if (aboutCelebrex != -1) {
 			
 			$("a#ctl00_ContentPlaceHolder1_Wizard1_hlkNextPageNode").click(function () { 
            s.pageName = sPage+ " > Risks";
			s.tl($("a#ctl00_ContentPlaceHolder1_Wizard1_hlkNextPageNode"),'o');
	    
	    });

	  
	  }
	  
	    if (understandRisks != -1) {
 			
 			$("a#ctl00_ContentPlaceHolder1_Wizard1_hlkNextPageNode").click(function () { 
            s.pageName = "NEXT SECTION: Feel the Benefits";
			s.tl($("a#ctl00_ContentPlaceHolder1_Wizard1_hlkNextPageNode"),'o');
	    
	    });

	  
	  }
	  
	  
	  if (feelBenefits != -1) {
 			
 			$("a#ctl00_ContentPlaceHolder1_Wizard1_hlkNextPageNode").click(function () { 
            s.pageName = "NEXT SECTION: Is CELEBREX Right for You?";
			s.tl($("a#ctl00_ContentPlaceHolder1_Wizard1_hlkNextPageNode"),'o');
	    
	    });

	  
	  }
	  
	  
	  if (celebrexRight != -1) {
 			
 			$("a#ctl00_ContentPlaceHolder1_Wizard1_hlkNextPageNode").click(function () { 
            s.pageName = "NEXT SECTION: How to take CELEBREX";
			s.tl($("a#ctl00_ContentPlaceHolder1_Wizard1_hlkNextPageNode"),'o');
	    
	    });

	  
	  }
	
	
	if (howTo != -1) {
 			
 			$("a#ctl00_ContentPlaceHolder1_Wizard1_hlkNextPageNode").click(function () { 
            s.pageName = "NEXT SECTION: What are NSAIDs?";
			s.tl($("a#ctl00_ContentPlaceHolder1_Wizard1_hlkNextPageNode"),'o');
	    
	    });

	  
	  }	
	
	
	if (whatNSAID != -1) {
 			
 			$("a#ctl00_ContentPlaceHolder1_Wizard1_hlkNextPageNode").click(function () { 
            s.pageName = "NEXT SECTION: Working with Your Doctor";
			s.tl($("a#ctl00_ContentPlaceHolder1_Wizard1_hlkNextPageNode"),'o');
	    
	    });

	  
	  }
	  
	  
	  if (workingDoctor != -1) {
 			
 			$("a#ctl00_ContentPlaceHolder1_Wizard1_hlkNextPageNode").click(function () { 
            s.pageName = "NEXT SECTION: Questions for Your Doctor";
			s.tl($("a#ctl00_ContentPlaceHolder1_Wizard1_hlkNextPageNode"),'o');
	    
	    });

	  
	  }
	  
	  
	  if (questionsDoctor != -1) {
 			
 			$("a#ctl00_ContentPlaceHolder1_Wizard1_hlkNextPageNode").click(function () { 
            s.pageName = "NEXT SECTION: FAQs";
			s.tl($("a#ctl00_ContentPlaceHolder1_Wizard1_hlkNextPageNode"),'o');
	    
	    });

	  
	  }
	  
	  
	  if (faqs != -1) {
 			
 			$("a#ctl00_ContentPlaceHolder1_Wizard1_hlkNextPageNode").click(function () { 
            s.pageName = "NEXT SECTION: About Arthritis";
			s.tl($("a#ctl00_ContentPlaceHolder1_Wizard1_hlkNextPageNode"),'o');
	    
	    });

	  
	  }	
*/


	}); //end doc ready function
	
	
