$(document).ready(function() {
	$("div.panel_button").click(function(){
		$("div#panel").animate({
			height: "180px"
		}, "slow");
		$("div.panel_button").toggle();
	
	});	
	
   $("div#hide_button").click(function(){
		$("div#panel").animate({
			height: "0px"
		}, "slow");
		
	
   });	
	
});

function loginSubmit(){
	document.getElementById('incorrect').innerHTML = 'Incorrect Username / Password';
	document.getElementById('password').value = '';
}