
	
	var sandra0 = new Image();
	sandra0.src = "/Themes/Home/Image/home_bg_01.jpg";
	var sandra1 = new Image();
	sandra1.src = "/Themes/Home/Image/home_bg_02.jpg";
	var sandra2 = new Image();
	sandra2.src = "/Themes/Home/Image/home_bg_03.jpg";
	
	var i_strngth = 1;
	var i_image = 0;
	var imageurl = new Array();
	imageurl[0] ="/Themes/Home/Image/home_bg_01.jpg";
	imageurl[1] ="/Themes/Home/Image/home_bg_02.jpg";
	imageurl[2] ="/Themes/Home/Image/home_bg_03.jpg";
	
	function showimage() { 
		if(document.getElementsByTagName("img")) {
			if (i_strngth <= 95) {
				document.getElementById('thumbnails').innerHTML = "<img style='filter:alpha(opacity="+i_strngth+");-moz-opacity:"+i_strngth+";' src="+imageurl[i_image]+" border='0'>";
				i_strngth = i_strngth + 1;
				var timer = setTimeout("showimage()",10);
			}
			else {
				clearTimeout(timer)
				var timer = setTimeout("hideimage()",2000);
			}
		}
		if(document.layers) {
			clearTimeout(timer);
			document.getElementById('thumbnails').document.write("<img src="+imageurl[i_image]+" border='0'>");
			document.close();
			i_image++;
			if (i_image >= imageurl.length) {
				i_image = 0;
			} 
			var timer = setTimeout("showimage()",3000);
		} 
	}
	
	function hideimage() { 
		if (i_strngth >= 10) {
			document.getElementById('thumbnails').innerHTML = "<img style='filter:alpha(opacity="+i_strngth+");-moz-opacity:"+i_strngth+";' src="+imageurl[i_image]+" border=0>";
			i_strngth = i_strngth-5;
			var timer = setTimeout("hideimage()",0);
		}
		else {
			clearTimeout(timer);
			i_image++;
		if (i_image >= imageurl.length) {
			i_image = 0;
		}
		i_strngth=1;
		var timer = setTimeout("showimage()",0) ;
	}
}
