jQuery(document).ready(function() {
	// Expand Panel
	jQuery("#show_button").click(function(evt){
		evt.preventDefault();
		jQuery("div#panel").animate({height: "191px"},"fast").animate({height: "191px"}, "fast");
		jQuery("#head").css('z-index','-1');
	});	
	
	
	// Collapse Panel
	jQuery("#hide_button").click(function(evt){
		evt.preventDefault();
		jQuery("div#panel").animate({height: "0px"}, "fast");
		jQuery("#head").css('z-index','-1');
	});		
	
	// Switch buttons from "Log In | Register" to "Close Panel" on click
	jQuery(".panel_button").click(function (evt) {
		evt.preventDefault();
		jQuery(".panel_button").toggle();
	});		
	jQuery(".panel_button").mouseover(function(){
		jQuery(".marketingtabs").css('z-index','-1');
	}); 
	jQuery(".panel_button").mouseout(function () {
		jQuery(".marketingtabs").css('z-index','99999');
	});
	jQuery(".marketingtabs").mouseover(function(){
		jQuery("#toppanel").css('z-index','-1');
	}); 
	jQuery(".marketingtabs").mouseout(function () {
		jQuery("#toppanel").css('z-index','99999');
	});	
});
