 function formatText(index, panel) {
	  return index + "";
    }


	$(function() {
		// If no JS CSS menu will still work
		$("#drop_menu").removeClass("cssonly");
		
		$("#drop_menu li a.mega").hover(function(){ 
			$(this).parent().find("div.subnav, div.mega_arrow").fadeIn(300);
			$(this).parent().hover(function() {
			}, function() {
			$(this).parent().find("div.subnav, div.mega_arrow").fadeOut(300);	
			})
		});
	});

