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


function pulsate(){
    $('new').innerHTML ="NEW";
    Effect.Pulsate($('new'), { pulses: 2, duration: 2});
    
    $('new2').innerHTML ="NEW";
    Effect.Pulsate($('new2'), { pulses: 2, duration: 3});
   
};


function showAdsContent(){
    $('adsTitle').innerHTML ="We believe";
    $('adsContent').innerHTML ="In <b><i>  'Sustainable Development through Tourism'</i></b>  We are committed to provide comprehensive trekking and tour related services to the inbound as well as outhound tourists.";
	Effect.Pulsate('adsContent', { pulses: 2, duration: 2});
	$('adsMore').innerHTML ="<a href='about/about-us.aspx'>// MORE</a>";	
};

function showAdsContent2(){

    $('adsTitle').innerHTML ="We missioned";
    $('adsContent').innerHTML =  "To provide  <b><i>'High Quality Professional Services'</i></b>  continuously to exceed customers expectations and reinforce its market position in the field of trekking and tour related services.";
    Effect.Pulsate('adsContent', { pulses: 2, duration: 2});
    $('adsMore').innerHTML ="<a href='about/about-us.aspx'>// MORE</a>";	

};



