//GrovalNavigationArea
function setPageTabNavigation(param){
	page = param;


    document.write('<table border="0" cellpadding="0" cellspacing="0" width="301"><tr>');

	//01
	if (page == "profile"){
	    document.write('<td width="125"><a href="gatsbyfanclub_mainpage.asp?fanclub=gatsbyfanprofile&type=profile" title="MY PROFILE"><img src="images/fanclub/btn_profile_r.jpg" alt="MY PROFILE"></a></td>');
	} else {
	if (page == "login") {
	    document.write('<td width="125"></td>');
	} else {
	    document.write('<td width="125"><a href="gatsbyfanclub_mainpage.asp?fanclub=gatsbyfanprofile&type=profile" title="MY PROFILE"><img src="images/fanclub/btn_profile.jpg" alt="MY PROFILE" class="imgover"></a></td>');
	}
	}

	//02
	if (page == "friends"){
	    document.write('<td width="101"><a href="gatsbyfanclub_mainpage.asp?fanclub=myfriends_v2&type=friends" title="MY FRIENDS"><img src="images/fanclub/btn_friends_r.jpg" alt="MY FRIENDS"></a></td>');
	} else {
	if (page == "login") {
	    document.write('<td width="125"></td>');
	} else {
	    document.write('<td width="101"><a href="gatsbyfanclub_mainpage.asp?fanclub=myfriends_v2&type=friends" title="MY FRIENDS"><img src="images/fanclub/btn_friends.jpg" alt="MY FRIENDS" class="imgover"></a></td>');
	}
	}


    //04
	if (page == "profile" || page == "friends") {
	    document.write('<td width="100"><a href="gatsbyfanclub_mainpage.asp?fanclub=gatsbyfanclub_main&type=login&act=logout" title="LOGOUT"><img src="images/fanclub/btn_logout.jpg" alt="LOGOUT" class="imgover"></a></td>');
	} else {
	    if (page == "login") {
	        document.write('<td width="100"><img src="images/spacer.gif" width=124 height=31></td>');
	    } else {
	        document.write('<td width="100"><a href="gatsbyfanclub_mainpage.asp?fanclub=gatsbyfanclub_main&type=login" title="LOGIN"><img src="images/fanclub/btn_login.gif" alt="LOGIN" class="imgover"></a></td>');
	    }
	}    
	
document.write('</tr></table>');

}