// JavaScript Document
function sitenavi(channle){
	document.write('<table width="100%" border="0" cellpadding="0" cellspacing="0"><tr>');
    (channle=="Home")?selectedtab("Home","/index.php","_self"):unselectedtab("Home","/index.php","_self");
	(channle=="Flights")?selectedtab("Flights","/flights/index.php","_self"):unselectedtab("Flights","/flights/index.php","_self");
	(channle=="Hotels")?selectedtab("Hotels","/hotels/index.php","_self"):unselectedtab("Hotels","/flights/index.php","_self");
	(channle=="Cars")?selectedtab("Cars","/cars/index.php","_self"):unselectedtab("Cars","/flights/index.php","_self");
	(channle=="Holidays")?selectedtab("Holidays","/holidays/index.php","_self"):unselectedtab("Holidays","/flights/index.php","_self");
	(channle=="Cruises")?selectedtab("Cruises","/cruises/index.php","_self"):unselectedtab("Cruises","/flights/index.php","_self");
	(channle=="Boating")?selectedtab("Boating","/boating/index.php","_self"):unselectedtab("Boating","/flights/index.php","_self");
	(channle=="LodgeEx")?selectedtab("LodgeEx","/lodgeex/index.php","_self"):unselectedtab("LodgeEx","/flights/index.php","_self");
	(channle=="TradeEx")?selectedtab("TradeEx","/tradeex/index.php","_self"):unselectedtab("TradeEx","/flights/index.php","_self");
	(channle=="Community")?selectedtab("Community","/community/index.php","_self"):unselectedtab("Community","/flights/index.php","_self");
	document.write('<td style="background-image:url(images/menu/menu_back.jpg);width:100%;"></td></tr></table>');
}
function unselectedtab(menutext,linkurl,target){
	document.write('<td width="3"><img src="/images/menu/bg1left.jpg" width="3" height="25"/></td>');
	document.write('<td class="webmenu1"><a href="'+linkurl+'" target="'+target+'">'+menutext+'</a></td>');
	document.write('<td width="5"><img src="/images/menu/bg1right.jpg" width="4" height="25"/></td>');
}
function selectedtab(menutext,linkurl,target){
	document.write('<td width="5"><img src="/images/menu/bg2left.jpg" width="4" height="25"/></td>');
	document.write('<td class="webmenu2"><a href="'+linkurl+'" target="'+target+'">'+menutext+'</a></td>');
	document.write('<td width="6"><img src="/images/menu/bg2right.jpg" width="6" height="25"/></td>');	
}