$(function() {
	/* add pull down menu's for direct navigation to subpages */
	
	$('ul.headlink').css({display: "none"}); /* needed for Opera apparently */
	
	/* first the show/hide for the menu */
	
	$('li.headlink').hover(function(){
		//$(this).find('ul:first:hidden').css({visibility: "visible",display: "none"}).show(400);
	},function(){
		//$(this).find('ul:first').css({visibility: "hidden"});
	});
	
	/* auto-select the first item if the title is selected */
	
	$('li.headlink').find('a:first').hover(function(){
		/* note: don't use $(this), since that points to the a:first element */
		$('li.headlink').find('ul').find('li:first').css('background-color', "#FEF85C");
	},function(){
		$('li.headlink').find('ul').find('li:first').css('background-color', "");
	});
	
	
});
