$(document).ready(function(){

	
	//---------------------------------------------------------------
	// SEARCH FORM
	$('#searchlink').click(function() {
    	$("form")[0].submit();
	});
	//---------------------------------------------------------------
	
	
	//---------------------------------------------------------------
	// about menu init
	// hide the about sub-links list
	$('#aboutlist').hide();
	// hide the about list hider
	$('.aboutshow').eq(1).hide();
	
	// set up click handler for the about menu-shower
	$('.aboutshow').eq(0).click(function() {
    	$('#aboutlist').slideDown('fast', function(){$('.aboutshow').eq(0).hide();$('.aboutshow').eq(1).show();});
	});

	// set up click handler for the about menu-hider
	$('.aboutshow').eq(1).click(function() {
    	$('#aboutlist').slideUp('fast', function(){$('.aboutshow').eq(1).hide();$('.aboutshow').eq(0).show();});
	});
	//---------------------------------------------------------------
	
	
	$('h2 > a').hover(function() {
		$(this).append("<span>&nbsp;&laquo;</span>");
	},function(){
  		$("span").remove();
	});

});
// end document ready function
