// ------------------------------
// top.js
// ------------------------------
// 2009-06-21

function Email(){
	var ad1 = "shoes";
	var ad2 = "mussie";
	var ad3 = "jp";
	window.location="mailto:"+ad1+"@"+ad2+"."+ad3;
}
function ShowColumn(){
	if(!isMacIE) $('#column').fadeIn("normal"); // fast,normal,slow
}
function HideColumn(){
	if(!isMacIE) $('#column').slideUp("fast");
}
function ShowChoice(){
	if(!isMacIE) $('#choice').fadeIn("normal"); // fast,normal,slow
}
function HideChoice(){
	if(!isMacIE) $('#choice').slideUp("fast");
}
function ShowInfo(){
	if(!isMacIE){
		$('#info').fadeIn("normal");
	}else{
		document.getElementById('info').style.display = "block";
	}
}
function HideInfo(){
	if(!isMacIE){
		$('#info').fadeOut("normal");
	}else{
		document.getElementById('info').style.display = "none";
	}
}

