<!-- Original:  CodeLifter.com (support@codelifter.com) -->
<!-- Web Site:  http://www.codelifter.com -->

<!-- This script and many more are available free online at -->
<!-- The JavaScript Source!! http://javascript.internet.com -->

<!-- Begin
// Set slideShowSpeed (milliseconds)
var slideShowSpeed = 3000;
// Duration of crossfade (seconds)
var crossFadeDuration = 10;
// Specify the image files
var Pic = new Array();


Pic[0] = 'images/1stweek/images/fergusson-college.jpg'
Pic[1] = 'images/1stweek/images/osho-ashram.jpg'
Pic[2] = 'images/1stweek/images/Pataleshwar_cave.jpg'
Pic[3] = 'images/1stweek/images/pune_restaurant.jpg'
Pic[4] = 'images/1stweek/images/Pune-SEZ.jpg'
Pic[5] = 'images/1stweek/images/RACE.jpg'
Pic[6] = 'images/1stweek/images/ShaniwaarWada.jpg'
Pic[7] = 'images/1stweek/images/ShaniwaarWada_pune.jpg'
Pic[8] = 'images/1stweek/images/westin-pune-restaurant.jpg'
Pic[9] = 'images/1stweek/images/ganapathi.jpg'
Pic[10] = 'images/1stweek/images/Hyatt-Regency.jpg'



var t;
var j = 0;
var p = Pic.length;
var preLoad = new Array();
for (i = 0; i < p; i++) {
preLoad[i] = new Image();
preLoad[i].src = Pic[i];
}
function runSlideShow4() {
if (document.all) {
document.images.SlideShow4.style.filter="BlendTrans(duration=2)";
document.images.SlideShow4.style.filter="revealTrans(duration=crossFadeDuration)";
document.images.SlideShow4.filters.revealTrans.Apply();
}
document.images.SlideShow4.src = preLoad[j].src;
if (document.all) {
document.images.SlideShow4.filters.revealTrans.Play();
}
j = j + 1;
if (j > (p - 1)) j = 0;
t = setTimeout('runSlideShow4()', slideShowSpeed);
}
// 





/******************************************
* DHTML Ad Box (By Matt Gabbert at http://www.nolag.com)
* Visit http://www.dynamicdrive.com/ for full script
* This notice must stay intact for use
******************************************/

adTime=10;  // seconds ad reminder is shown
chanceAd=1; // ad will be shown 1 in X times (put 1 for everytime)

var ns=(document.layers);
var ie=(document.all);
var w3=(document.getElementById && !ie);
var calunit=ns? "" : "px"
adCount=0;
function initAd(){
	if(!ns && !ie && !w3) return;
	if(ie)		adDiv=eval('document.all.sponsorAdDiv.style');
	else if(ns)	adDiv=eval('document.layers["sponsorAdDiv"]');
	else if(w3)	adDiv=eval('document.getElementById("sponsorAdDiv").style');
	randAd=Math.ceil(Math.random()*chanceAd);
        if (ie||w3)
        adDiv.visibility="visible";
        else
        adDiv.visibility ="show";
	if(randAd==1) showAd();
}
function showAd(){
if(adCount<adTime*10){adCount+=1;
	if (ie){documentWidth  =truebody().offsetWidth/2+truebody().scrollLeft-20;
	documentHeight =truebody().offsetHeight/2+truebody().scrollTop-20;}	
	else if (ns){documentWidth=window.innerWidth/2+window.pageXOffset-20;
	documentHeight=window.innerHeight/2+window.pageYOffset-20;} 
	else if (w3){documentWidth=self.innerWidth/2+window.pageXOffset-20;
	documentHeight=self.innerHeight/2+window.pageYOffset-20;} 
	adDiv.left=documentWidth-200+calunit;adDiv.top =documentHeight-200+calunit;
	setTimeout("showAd()",100);}else closeAd();
}
function closeAd(){
if (ie||w3)
adDiv.display="none";
else
adDiv.visibility ="hide";
}

function truebody(){
return (document.compatMode && document.compatMode!="BackCompat")? document.documentElement : document.body
}

//End-->
