$(document).ready( function() {	
	/*
	$("#throbber_pic").hide()
	    .ajaxStart(function(){
	    	$(this).attr( 'src', applicationURL + '/inc/img/loading.gif');
	        $(this).show();
	    })
	    .ajaxStop(function(){
	        $(this).hide();
	    });
	
	$('#add').bind('submit', function () {
		addEntityAjax( $(this).serialize() );
		return false;
	});
	
	*/
	$("#sideNav").corners( "6px bottom-left top-left" );
	
	if ( $("#login_username").length && $("#login_password").length ) {
		if ( $("#login_username").val().length == 0 ) {
			$("#login_username").select();
		} else if ( $("#login_password").val().length == 0 ) {
			$("#login_password").select();
		}		
	}
});

