document.write('<table border="0" cellpadding="0" cellspacing="0" class="footer">')
document.write('<tr>')
document.write('<td class="footer_l"><a href="http://www.sonymusic.co.jp/" target="_blank"><img src="../img/foooter_logo.gif" alt="Sony Music" width="67" height="13" style="margin-right:5px;"></a><img src="../img/copy.gif" alt="c 2010 Sony Music Associated Records Inc. All rights Reserved." width="292" height="13" class="copy"></td>')
document.write('<td class="footer_r"><a href="http://www.myspace.com/oreskabandus" target="_blank"><img src="../img/btn_myspace_off.gif" alt="MYSPACE" width="164" height="31" style="margin-right:15px;"></a><a href="../request/index.html" target="_top"><img src="../img/btn_request_off.gif" alt="REQUEST" width="164" height="31"></a></td>')
document.write('</tr>')
document.write('</table>')


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(window.addEventListener) {
	window.addEventListener("load", smartRollover, false);
}
else if(window.attachEvent) {
	window.attachEvent("onload", smartRollover);
}