//Hilight
function switchTabHilight(n){
	var $hilightBox = jQuery('ul',$('#jqHilightbox'));
	var $li = jQuery('li',$('#jqHilight'));
	$li.each(function(i){				
		if($li[n]==this){
			jQuery(this).addClass("here");					
		}else{
			jQuery(this).removeClass("here");
		}
	});
	$hilightBox.each(function(i){
		if(this==$hilightBox[n]){
			jQuery(this).show();
		}else{
			jQuery(this).hide();
		}
	});
}
//Hilight
/////////////////////////////
$(document).ready(function(){
//MenuTop
	$(".btn_menutop").click(function(){
		$("#menutop_panel").toggle();
		$(this).toggleClass("active"); return false;
	}); 
//MenuTop
//RamboBar
	var $li = jQuery('li', jQuery('.rambobar'));
	$li.click(function(){
		var link=jQuery('a',this);
		if ( $.browser.msie )
		{
			window.location.href=link[0];
			//alert(link[0]);
		}
	});
//RamboBar

});