// JavaScript Document
var top_banner_pictures_for_home = new Array
// List all the pictures in the slideshow here
(
"images/top_banner1.jpg"  
,"images/top_banner7.jpg" 
,"images/top_banner2.jpg"  
,"images/top_banner7.jpg" 
,"images/top_banner3.jpg" 
,"images/top_banner7.jpg"  
,"images/top_banner4.jpg" 
,"images/top_banner7.jpg"  
,"images/top_banner5.jpg" 
,"images/top_banner7.jpg"  
,"images/top_banner6.jpg"  
,"images/top_banner7.jpg" 
);
var top_banner_pictures_for_inner_page = new Array
// List all the pictures in the slideshow here
(
"../images/top_banner1.jpg"  
,"../images/top_banner7.jpg" 
,"../images/top_banner2.jpg"  
,"../images/top_banner7.jpg" 
,"../images/top_banner3.jpg" 
,"../images/top_banner7.jpg"  
,"../images/top_banner4.jpg" 
,"../images/top_banner7.jpg"  
,"../images/top_banner5.jpg" 
,"../images/top_banner7.jpg"  
,"../images/top_banner6.jpg"  
,"../images/top_banner7.jpg" 
);
var right_banner_pictures_for_home = new Array
// List all the pictures in the slideshow here
(
"images/right_banner1.jpg"  
,"images/right_banner7.jpg" 
,"images/right_banner2.jpg"   
,"images/right_banner7.jpg" 
,"images/right_banner3.jpg"  
,"images/right_banner7.jpg"  
,"images/right_banner4.jpg"  
,"images/right_banner7.jpg"  
,"images/right_banner5.jpg"  
,"images/right_banner7.jpg"  
,"images/right_banner6.jpg"  
,"images/right_banner7.jpg" 
);
var right_banner_pictures_for_inner_page = new Array
// List all the pictures in the slideshow here
(
"../images/right_banner1.jpg"  
,"../images/right_banner7.jpg" 
,"../images/right_banner2.jpg"  
,"../images/right_banner7.jpg" 
,"../images/right_banner3.jpg" 
,"../images/right_banner7.jpg"  
,"../images/right_banner4.jpg" 
,"../images/right_banner7.jpg"  
,"../images/right_banner5.jpg" 
,"../images/right_banner7.jpg"  
,"../images/right_banner6.jpg"  
,"../images/right_banner7.jpg" 
);
var picture_num = 0;
var current_picture = new Image();

function start_show_for_home() 
{
	// Time is in seconds X 1000
	setInterval("slideshow_for_home()", 3000);
}
function slideshow_for_home() 
{
	//alert('here');
	picture_num++;
	if (picture_num == top_banner_pictures_for_home.length) 
	{
		picture_num = 0;
	}
	/*current_picture.src = top_banner_pictures_for_home[picture_num];
	document.rotating_picture.src = current_picture.src;*/
	/*current_picture.src = right_banner_pictures_for_home[picture_num];
	document.right_banner.src = current_picture.src;*/
}


function start_show_for_inner_page() 
{
// Time is in seconds X 1000
setInterval("slideshow_for_inner_page()", 3000);
}


function start_show_for_search_page() 
{
// Time is in seconds X 1000
setInterval("slideshow_for_search_page()", 3000);
}

function slideshow_for_inner_page() 
{
	picture_num++;
	if (picture_num == top_banner_pictures_for_inner_page.length) 
	{
	picture_num = 0;
	}
	/*current_picture.src = top_banner_pictures_for_inner_page[picture_num];
	document["rotating_picture"].src = current_picture.src;*/
	/*current_picture.src = right_banner_pictures_for_inner_page[picture_num];
	document["right_banner"].src = current_picture.src;*/
}

function slideshow_for_search_page() 
{
	picture_num++;
	if (picture_num == top_banner_pictures_for_inner_page.length) 
	{
	picture_num = 0;
	}
	current_picture.src = top_banner_pictures_for_inner_page[picture_num];
	document["rotating_picture"].src = current_picture.src;
}
