/**************************************************** 
 * showNavigation()									* 
 * @param: none;									* 
 *													* 
 * Def: show the currently page for user			* 
 * Special reqs: you may change the comments parts	* 
 * allowing the change								* 
 *													* 
 * Author: Ci&T (www.ciandt.com)					* 
 ****************************************************/ 
  
function showNavigation() 
{ 
        // You may change the following vars 
        // These vars make reference to absolute links to other sections 
        // You must leave the vars name intact to the system works 
        // If there is a new section or "sub-section" (like a new link 
        // on "Children" section), just add a new number at the end of 
        // the var name 

        // Home Link 
        var quixinHomeLink = "Quixin"; 
        
        // Web site sections 
        var quixinChildrenLink     = "Children"; 
        var quixinAdultLink        = "Adult"; 
        var quixinPediatricianLink = "Pediatrician"; 
        var quixinEcpLink 		   = "Professional"; 
		var quixinLegalLink 	   = "Legal";
		var quixinInfoLink 	       = "Information";
		var quixinSummLink         = "Summary";
        
        // Links to: "CHILDREN" Section 
        var quixinChildrenItem01 = "All About Pink Eye"; 
        var quixinChildrenItem02 = "How does QUIXIN&reg; work?"; 
        var quixinChildrenItem03 = "Treatment With QUIXIN&reg;"; 
        var quixinChildrenItem04 = "Explain Terms"; 
        var quixinChildrenItem05 = "Frequently Asked Questions"; 
        var quixinChildrenItem06 = "Glossary"; 
        
		// Links to: "ADULT" Section 
        var quixinAdultItem01 = "All About Pink Eye"; 
        var quixinAdultItem02 = "How does QUIXIN&reg; work?"; 
        var quixinAdultItem03 = "Treatment With QUIXIN&reg;"; 
        var quixinAdultItem04 = "Frequently Asked Questions"; 
        var quixinAdultItem05 = "Glossary"; 
		var quixinAdultItem06 = "Explain Terms";
        
		// Links to: "PEDIATRICIAN" Section 
        var quixinPediatricianItem01 = "Broad-Spectrum Activity with QUIXIN&reg;"; 
        var quixinPediatricianItem02 = "Long-Lasting Bactericidal Activity"; 
        var quixinPediatricianItem03 = "Documented Susceptibility to Levofloxacin"; 
        var quixinPediatricianItem04 = "Dual Mechanism of Action with QUIXIN&reg;"; 
        var quixinPediatricianItem05 = "Comfortable Administration with Little or No Stinging"; 
		
		// Links to: "PROFESSIONAL" Section 
        var quixinEcpItem01 = "Broad-Spectrum Activity with QUIXIN&reg;"; 
        var quixinEcpItem02 = "T.R.U.S.T.: Documented Susceptibility<sup>1</sup>"; 
        var quixinEcpItem03 = "Dual Mechanism of Action"; 
        var quixinEcpItem04 = "Comfortable Administration with Little or No Stinging"; 
		
		// Links to: "LEGAL" Section 
        var quixinLegalItem01 = "Legal Notice"; 
        var quixinLegalItem02 = "Privacy Policy"; 
        var quixinLegalItem03 = "Our Credo";
		var quixinLegalItem04 = "How to Contact Us"; 
		
		// Links to: "INFORMATION" Section
        var quixinInfoItem01 = "Prescribing Information";
		
		// Links to: "SUMMARY" Section
        var quixinSummItem01 = "Consumer Brief Summary"; 

		
		// 
        // DO NOT CHANGE NOTHING FROM THIS LINE BELOW! 
        // 
        
        // With the value from ID "body" tag, we'll work to construct our 
        // links in navigation line 
        var sectionId     = document.getElementsByTagName("body")[0].id; // The ID value in "body" tag 
        var sectionId     = sectionId.split("-"); // Spliting the result 
        var sectionName   = sectionId[0].toUpperCase().substring(0, 1) + sectionId[0].substring(1, sectionId[0].length); // The Section name ("section") with the first letter as uppercase

        var sectionNumber = sectionId[2]; // The Section number ("sub-section") 
        var separate = "&nbsp; &raquo; &nbsp;"; // the caracter to separate the links 
        
        // Creating the link for the Section 
        var Section = eval("quixin"+sectionName+"Link"); 
        // Creating the link for the SubSection 
        var SubSection = eval("quixin"+sectionName+"Item"+sectionNumber) 
        
        // Now we'll write the result in screen 
        document.write(quixinHomeLink + separate + Section + separate + SubSection); 
                // the result will be something like this: Quixin » Children » Frequently Asked Questions (with the links)

                
        // And we're done! 
} 