// Button & Menu Options ---------------------------------//

//Time before menus auto-hide
	menu_pause = 250; 

// Use animation menus
// Requires scriptaculous
	anim_menus = 1;

// speed of animated menus
	menu_speed = .25;

//Auto link buttons to overview pages
	use_overview_pages = 0;

//Show sub-menus for current section( 0=no, 1=yes)
	section_subs = 0;

// Menu Direction up|center (default is down)
	menu_dir = "";

//Other button definitions
//"btn_name,menu_name(|menu_direction),section_id,img_src,img_src_on"
var otherBtns = new Array(
	//"ql_btn,ql_menu,0,uploaded/images/ql_btn.gif,uploaded/images/ql_btn.gif"
);

// List other images that need to be pre-loaded
var otherImages = new Array();

//other JS functions to run onLoad
function loadJS(){
	if(pageid==1){createStories(),createTabs();}

   $j('#loginBtn').toggle(
	function(){ $j('#logincontop').show(); },
	function(){ $j('#logincontop').hide(); }
);

	document.fs_search.keywords.onfocus= function(){ if(this.value == "Search"){this.value=""};}
	document.fs_search.keywords.onblur= function(){ if(this.value == ""){this.value="Search"};}

}

/* Switched on .ready from onLoad to allow use before flash piece finishes loading...
   ...because that with the twitter feed, tabs, etc. creates a sloooooow looooad.  Ticket: 8317594 */
$j(document).ready(function() {
  /*$j('#loginBtn,#logincontop').mousedown(
			function(){
				clearTimeout(showLogin);
	                        $j('#logincontop').show();
				//$j('#loginBtn').attr('src', 'uploaded/images/mylcc_btn.gif'); 				
			});
			
		$j('#loginBtn,#logincontop').mouseup(
			function(){
				showLogin = setTimeout("$j('#logincontop').hide();",250);	
				//$j('#loginBtn').attr('src', 'uploaded/images/mylcc_btn.gif');
			});*/

 $j('#loginBtn').toggle(
	function(){ $j('#logincontop').show(); },
	function(){ $j('#logincontop').hide(); }
);

});
