﻿// 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 ="Welcome to Nepal";
     Effect.Pulsate('adsTitle', { pulses: 2, duration: 2});
    
    $('adsContent').innerHTML ="A country that offers a lifetime experience for everyone from around the globe. A holiday in Nepal offers romance and adventure from the spectacular Himalayas to Exotic Adventures, Charismatic Arts and Cultures.";
	
	
	$('adsMore').innerHTML ="<a href='nepal.aspx'>// MORE</a>";	
};


function showAdsContent2(){

    $('adsTitle').innerHTML ="Nepal Tourism 2011 ";
    Effect.Pulsate('adsTitle', { pulses: 2, duration: 2});
  
    $('adsContent').innerHTML =  "Government of Nepal in consultation with Nepalese travel trade sector and concerned organizations/experts decided on October 25, 2008 to launch a national tourism campaign <b>'Nepal Tourism Year 2011'</b>. ";
    

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



function showAdsContent3(){

    $('adsTitle').innerHTML ="Things to do in Nepal";
     Effect.Pulsate('adsTitle', { pulses: 2, duration: 2});
  
    $('adsContent').innerHTML =  "Best Destination to sojourn for Your Holiday Pleasure, as it is one of the finest places in the world for: Mountaineering, Trekking, White water rafting, Jungle Safari, Bird Watching, Mountain Biking, Mountain Flight, Bungy Jumping ";

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

