/*
Copyright: © 2009 WebSharks, Inc. ( coded in the USA )
<mailto:support@websharks-inc.com> <http://www.websharks-inc.com/>

Released under the terms of the GNU General Public License.
You should have received a copy of the GNU General Public License,
along with this software. In the main directory, see: /licensing/
If not, see: <http://www.gnu.org/licenses/>.
*/
jQuery(document).ready(function($)
{
	// Sort out login box - is it visible or not?
	$('div#body-header-login-box-controls > a#login-box-opener').click (function()
	{
		var $this = $(this), $loginBox = $('div#body-header-login-box');

		/**/
		if ($loginBox.css ('display') === 'none')
			{
				$this.addClass ('current');
				$loginBox.slideDown ('fast');
			}
		else /* Otherwise hide & remove class. */
			{
				$this.removeClass ('current');
				$loginBox.slideUp ('fast');
			}
		/**/
		return false;
	});
	
	// Date picker
	$(".datepicker").datepicker();

	// Enable row striping in tables
	$('table tr:odd').addClass ('odd'), $('table tr:even').addClass ('even');

});

 
// pre-submit callback 
function showRequest(formData, jqForm, options) 
{ 
	alert('hello');
    // formData is an array; here we use $.param to convert it to a string to display it 
    // but the form plugin does this for you automatically when it submits the data 
    //var queryString = $.param(formData); 
 
    // jqForm is a jQuery object encapsulating the form element.  To access the 
    // DOM element for the form do this: 
    // var formElement = jqForm[0]; 
 
    alert('About to submit: '); // + queryString); 
 
    // here we could return false to prevent the form from being submitted; 
    // returning anything other than false will allow the form submit to continue 
    return true; 
} 
 
// post-submit callback 
function showResponse(responseText, statusText, xhr, $form)  
{ 
	alert('goodbye');
    // for normal html responses, the first argument to the success callback 
    // is the XMLHttpRequest object's responseText property 
 
    // if the ajaxForm method was passed an Options Object with the dataType 
    // property set to 'xml' then the first argument to the success callback 
    // is the XMLHttpRequest object's responseXML property 
 
    // if the ajaxForm method was passed an Options Object with the dataType 
    // property set to 'json' then the first argument to the success callback 
    // is the json data object returned by the server 
 
    alert('status: ' + statusText + '\n\nresponseText: \n' + responseText + 
        '\n\nThe output div should have already been updated with the responseText.'); 
}

