/* jQuery code for login form 
   At the moment it just disables the form.
   It *will* use .ajax function to asynchronously login the user
   and the blockUI.js to disable the form while loggin in the user
*/

/* first check that JavaScript is enabled */

/* run jQuery if JavaScript is enabled */
$(document).ready(function()  {	
	/* TEMPORARY: block the form */
	$("div#login").block();
 });


