// JavaScript Document

function extractPageName()
{
	var p=document.location.href;
	var pn=p.lastIndexOf('/');
	var pe=p.indexOf('?');
	if(pe!='-1')
		var pageName=p.substring(pn+1,pe);
	else
		var pageName=p.substring(pn+1);
	
	return pageName;

}

function header_top()
{
	
	var module = extractPageName();
	var str    = '';
	

	if (module == '' || module =='index.php' )
					{
				
						str+= "&nbsp;<a href='index.php'><img class='nob' src='../images/btn_home_on.jpg'/></a>&nbsp;";
						
				
					}
					else
					{
				
						str+= "&nbsp;<a href='index.php'><img class='nob' src='../images/btn_home.jpg' id='home' onMouseOver=imgOn('home') onMouseOut=imgOff('home')/></a>&nbsp;";
				
					}
				
				
				
					if (module == 'about')
					{
				
						str+= "<a href='index.php/about'><img class='nob' src='../images/btn_about_on.jpg'/></a>&nbsp;";
				
					}
					else
					{
				
						str+= "<a href='/index.php/about'><img class='nob' src='../images/btn_about.jpg' name='about' width='94' height='31' id='about' onMouseOver=imgOn('about') onMouseOut=imgOff('about') /></a>&nbsp;";
				
					}
				
				
				
					if (module == 'forum')
					{
				
						str+= "<a href='/index.php/forum'><img src='../images/btn_forum_on.jpg'/></a>&nbsp;";
				
					}
					else
					{
				
						str+= "<a href='/index.php/forum'><img src='../images/btn_forum.jpg' name='forum' width='79' height='31' id='forum' onMouseOver=imgOn('forum') onMouseOut=imgOff('forum') /></a>&nbsp;";
				
					}
				
				
				
				
				
					if (module == 'press')
					{
				
						str+= "<a href='/index.php/press'><img src='../images/btn_press_on.jpg'/></a>&nbsp;";
				
					}
					else
					{
				
						str+= "<a href='/index.php/press'><img src='../images/btn_press.jpg' name='press' width='107' height='31' id='press' onMouseOver=imgOn('press') onMouseOut=imgOff('press') /></a>&nbsp;";
				
					}
				
				
				
					if (module == 'event')
					{
				
						str+= "<a href='/index.php/event'><img src='../images/btn_event_on.jpg'/></a>&nbsp;";
				
					}
					else
					{
				
						str+= "<a href='/index.php/event'><img src='../images/btn_event.jpg' name='event' width='70' height='31' id='event' onMouseOver=imgOn('event') onMouseOut=imgOff('event') /></a>&nbsp;";
				
					}
				
				
				
					if (module == 'product')
					{
				
						str+= "<a href='/index.php/product'><img src='../images/btn_product_on.jpg'/></a>&nbsp;";
				
					}
					else
					{
				
						str+= "<a href='/index.php/product'><img src='../images/btn_product.jpg' name='product' width='140' height='31' id='product' onMouseOver=imgOn('product') onMouseOut=imgOff('product') /></a>&nbsp;";
				
					}
				
				
				
					if (module == 'contact')
					{
				
						str+= "<a href='/index.php/contact'><img src='../images/btn_contact_on.jpg'/></a>&nbsp;";				
					}
					else
					{
				
						str+= "<a href='/index.php/contact'><img src='../images/btn_contact.jpg' name='contact' width='104' height='31' id='contact' onMouseOver=imgOn('contact') onMouseOut=imgOff('contact') /></a>&nbsp;";
					}
					
				str+= "<a href='javascript: void(0);' onClick='javascript: mypopupTell()'><img src='../images/btn_tell.jpg' width='124' /></a>&nbsp;";
				
				str+="<a href='javascript: void(0);' onClick='javascript: mypopupSearch()'><img src='../images/btn_search.jpg' width='89' /></a>";
					
					document.write(str);
}