﻿// JScript File

document.observe('dom:loaded', function() {
  
   var pe = new PeriodicalExecuter(showAdsContent, 6);
   var pe2 = new PeriodicalExecuter(showAdsContent2, 8);  
   var pe3 = new PeriodicalExecuter(showAdsContent3, 10); 

});




function showAdsContent(){

    $('adsTitle').innerHTML ="Why Himalayan Holidays?";
  
    $('adsContent').innerHTML =  "An Adventure Travel Specialist, Dedicated to Excellence in Serving our Valuable Customers for the Past 17 Years.";
    Effect.Pulsate('adsContent', { pulses: 2, duration: 2});

    
//    $('adsMore').innerHTML ="<a href='achievements.aspx'>// MORE</a>";
   
};
function showAdsContent2(){
    $('adsTitle').innerHTML ="Live the Adventure";
    
    $('adsContent').innerHTML ="We have Launched and Accomplished Numerous Challenging as well as Extraordinary Trips in the lap of the Mighty Himalayas.";
	Effect.Pulsate('adsContent', { pulses: 2, duration: 2});
	
//	$('adsMore').innerHTML ="<a href='achievements.aspx'>// MORE</a>";	
};



function showAdsContent3(){

    $('adsTitle').innerHTML ="We Offer a Range of Services";
  
    $('adsContent').innerHTML =  "An Assortment of Adventure Activities for both the Young and the Elderly Clients with Special Care suit Your Needs. ";
    Effect.Pulsate('adsContent', { pulses: 2, duration: 2});

    
//    $('adsMore').innerHTML ="<a href='achievements.aspx'>// MORE</a>";
   
};

