if (document.all)    {nn=0;ie=1;fShow="visible";fHide="hidden";}
if (document.layers) {nn=1;ie=0;fShow="show";   fHide="hide";}

var images = new Array("coffee.jpg","hands.jpg","oranges.jpg","sea.jpg","trip.jpg","book.jpg","mak.jpg");
var texts = new Array(
	"Imagine you can not hold this cup in your hand...",
	"Imagine you can not take care of him...",
	"Imagine you can not eat it without help...",
	"Imagine you can not hear hum of waves...",
	"Imagine you can not run this road...",
	"Imagine your world looks like this...",
	"SM steals our normality. Help us to get it back.");
var current_image = 0;

function ChangeImage()
{
	document.getElementById('banner1').src="images/" + images[current_image];
	document.getElementById('banner1_text').innerHTML = texts[current_image];
	if(current_image == 6)
		current_image = 0;
	else 
		current_image = current_image + 1;
	

	setTimeout("ChangeImage()",7000);
}

function Init()
{
	ChangeImage();
}
function ShowWindow(url,caption, prop)
{
	window.open (url,caption,prop);
	return false;
}
