$(document).ready(function() {
	
	// Expand Panel
	$("#open").click(function(){
		$("div#panel").slideDown("slow");
	
	});	
	
	// Collapse Panel
	$("#close").click(function(){
		$("div#panel").slideUp("slow");	
	});		
	
	// Switch buttons from "Log In | Register" to "Close Panel" on click
	$("#toggle a").click(function () {
		$("#toggle a").toggle();
	});		
		
});


 function highlight(item,ext){
  document.getElementById(item).src="/skin/"+item+"_h."+ext;
}
 function highlightoff(item,ext){
  document.getElementById(item).src="/skin/"+item+"."+ext;
}

 function highlight1(item,ext){
 document.getElementById(item).style.backgroundImage="url('/skin/"+item+"_h.png')";
}
 function highlightoff1(item,ext){
 document.getElementById(item).style.backgroundImage="url('/skin/"+item+".png')";
}

