// Roll Over //
function smartRollover() {
	if(document.getElementsByTagName) {
		var images = document.getElementsByTagName("img");

		for(var i=0; i < images.length; i++) {
			if(images[i].getAttribute("src").match("_off."))
			{
				images[i].onmouseover = function() {
					this.setAttribute("src", this.getAttribute("src").replace("_off.", "_on."));
				}
				images[i].onmouseout = function() {
					this.setAttribute("src", this.getAttribute("src").replace("_on.", "_off."));
				}
			}
			if(images[i].className == "rollover"){
				images[i].onmouseover=function(){
					var n=false;
					n=this.src;
					this.src=this.name;
					this.name=n;
				}
				images[i].onmouseout=function(){
					var n=false;
					n=this.src;
					this.src=this.name;
					this.name=n;
				}
			}
		}
	}
}

if(window.addEventListener) {
	window.addEventListener("load", smartRollover, false);
}
else if(window.attachEvent) {
	window.attachEvent("onload", smartRollover);
}


function open_win01(){
window.open("campaign/index.html","","width=560,height=480,menubar=no,toolbar=no,location=no,status=no,scrollbars=yes,resizable=no");
}
function open_win02(){
window.open("http://www.ark-mejiro.com/contact/form.php","","width=840,height=400,menubar=yes,toolbar=yes,location=yes,status=yes,scrollbars=yes,resizable=yes");
}
function open_win03(){
window.open("http://www.individuallocker.com/","","width=840,height=400,menubar=yes,toolbar=yes,location=yes,status=yes,scrollbars=yes,resizable=yes");
}


