//<![CDATA[
$(document).ready(function(){

	$("#news").children('li').children('a').addClass('leaf');
	$("#projects").children('li').children('a').addClass('leaf');
	$("#blog").children('li').children('a').addClass('leaf');
	$("#jpda").children('li').children('a').addClass('leaf');
	
	$("#news").children('li:last').css("background-image","none").css("padding-bottom","0px");	
	$("#projects").children('li').css("background-image","none").css("padding-bottom","0px");
	$("#blog").children('li:last').css("background-image","none").css("padding-bottom","0px");
	$("#jpda").children('li').css("background-image","none").css("padding-bottom","0px");
	$('a.menuhead').before("<a class='menuselect collapsed' href='#'><img src='/files/images/plus.gif' border='0'></a>");		
	
	$("#jpda").show('fast');
	$("#jpda").prev('a').prev('a').html('<img src="/files/images/ndash.gif" border="0">').removeClass('collapsed').removeClass('expanded').addClass('expanded');
	
	$('a.menuselect').click(function() {
		$("#news").hide('fast');
		$("#projects").hide('fast');
		$("#blog").hide('fast');
		$("#jpda").hide('fast');
		
		$('.menuselect').removeClass('collapsed').removeClass('expanded').addClass('collapsed');
		var $i = $(this).html();
		var $j = $i.indexOf("plus");
		if ($j > -1) {
			$(this).html('<img src="/files/images/ndash.gif" border="0">');
			$(this).next('a').next('ul').show('fast');
			$(this).removeClass('collapsed').removeClass('expanded').addClass('expanded');
			
		} else {
			$(this).html('<img src="/files/images/plus.gif" border="0">');
			$(this).next('a').next('ul').hide('fast');
			$(this).removeClass('collapsed').removeClass('expanded').addClass('collapsed');
		}
		$('.collapsed').html('<img src="/files/images/plus.gif" border="0">');
		return false;
	});
});


//]]>
