
var time = 2;
var no = 3;

var myDate = new Date();
var today = myDate.getDay();

if (today == 4) {
var imgURL = new Array(
	"img/main-imgthu1.jpg", "img/main-imgthu2.jpg", "img/main-imgthu3.jpg", 
	"img/main-imgthu4.jpg"
);
}else{

var imgURL = new Array(
	"img/main-img1.jpg", "img/main-img2.jpg", "img/main-img3.jpg", 
	"img/main-img4.jpg"
);
}

function cngImg(){		
	if (no == 4) {
		no = 0;
	}
	
	var imgPath = imgURL[no];
	
	if(navigator.userAgent.indexOf("MSIE") != -1){
		document.images.photo1.style.filter="blendTrans()";
		document.images.photo1.filters.blendTrans.Apply();
		document.images.photo1.filters.blendTrans.duration = time;
		document.images.photo1.src = imgPath;
		document.images.photo1.filters.blendTrans.Play();

	} else {
	
		document.images.photo1.src = imgPath;
	}
	
	no++;
	setTimeout("cngImg()",3000);
}


function load() {
      if (GBrowserIsCompatible()) {
        var map = new GMap2(document.getElementById("map"));
        map.setCenter(new GLatLng(35.424507,137.062072), 15);
		
		var marker = new GMarker(new GLatLng(35.424507,137.062072));
		
		map.addOverlay(marker);

		map.addControl(new GSmallMapControl());
      }
    }


	