$(document).ready(function(){
						   
	// Register Form
	var options = { 
		target:'#formAlert'
	}; 
	$('#signUpForm').ajaxForm(options); 
	$('#signUpButton').click(function(event){
		$(".info-panelSwitch").slideUp("fast");
		$(".close-window").fadeOut("fast");
		$(".jqueryLoader").fadeIn("normal");
		$(".formMessage").hide();
	});
	
});