//$(document).ready(function() {
jQuery(document).ready(function($) {	
	// Expand Panel
/*	$("#open").click(function(){
		$("div#panel").slideDown("slow");
	});	*/
/*	$("#open").hover(function(){
		$("div#panel").slideDown("slow");
	});*/
	// Collapse Panel
/*	$("#close").click(function(){
		$("div#panel").slideUp("slow");	
	});*/		
/*	$("div#panel").mouseout(function(){
		$("div#panel").slideUp("slow");	
	});*/
	// Switch buttons from "Log In | Register" to "Close Panel" on click
/*	$("#toggle a").click(function () {
		$("#toggle a").toggle();
	});		
*/
$('#open, div#panel').hover(FadeMenuIn, FadeMenuOut);
/*function FadeMenuIn(ID) {$('div#panel').stop(true, true).slideDown('slow');}*/
/*function FadeMenuIn(ID) {$('div#panel').stop(true, true).slideDown(500, function() {$('div.content').fadeIn('slow'); });}*/
/*function FadeMenuIn(ID) {$('div#panel').stop(true, true).slideDown(800);}*/
/*function FadeMenuOut(ID) {$('div#panel').stop(true, true).delay(10).slideUp(800);}*/
function FadeMenuIn(ID) {$('div#panel').stop(true, true).slideDown('slow');}
function FadeMenuOut(ID) {$('div#panel').stop(true, true).delay(10).slideUp('slow');}
});
/*
$('#container').slideDown('slow', function() {$('#content').fadeIn('slow'); 
});
*/

