$(document).ready(function() {
	bind_table_hilights();
})

function bind_table_hilights ()
{
	$(".tlist tr").mousemove(function(){
		if (! $(this).hasClass("theader")){ $(this).addClass('hilight') }
	});
	$(".tlist tr").mouseout(function(){
		if (! $(this).hasClass("theader")){ $(this).removeClass('hilight') }
	});
/*	$(".tlist tr").click(function(){
		if (! $(this).hasClass("theader")){ $(this).toggleClass('marked') }
	});
*/
}


function aReq(link, container, callback) {
	$.ajax({ 
            type: "get",url: link,
			cache: false,  
			beforeSend: function (){
				$("*").toggleClass('wait');
			},   
            success: function(html){ //so, if data is retrieved, store it in html 
                $("*").toggleClass('wait');
				
				$(container).show("slow"); //animation 
                $(container).html(html); //show the html inside .content div
				bind_table_hilights();
				bind_thickbox();
				if (callback){ callback.call() }
            } 
    });
	return false;	
}

// prepare the form when the DOM is ready 
function aReqForm(form, container) {
	form = '#'+form;
	container = '#'+container;
	var url = $(form).attr('action') ? $(form).attr('action') : '/adm/index.cgi';
    var options = { 
        target:        container,   // target element(s) to be updated with server response 
        beforeSubmit:  showRequest,  // pre-submit callback 
        success:       showResponse,  // post-submit callback
		
		url:       	   url         // override for form's 'action' attribute 
 
        // other available options: 
        
        //type:      type        // 'get' or 'post', override for form's 'method' attribute 
        //dataType:  null        // 'xml', 'script', or 'json' (expected server response type) 
        //clearForm: true        // clear all form fields after successful submit 
        //resetForm: true        // reset the form after successful submit 
 
        // $.ajax options can be used here too, for example: 
        //timeout:   3000

    }; 
 
    // bind to the form's submit event 

        // inside event callbacks 'this' is the DOM element so we first 
        // wrap it in a jQuery object and then invoke ajaxSubmit 
        
		$(form).ajaxSubmit(options); 
        // !!! Important !!! 
        // always return false to prevent standard browser submit and page navigation 
        return false; 
    
};

function afterReceive (data, type){
	var i = data.indexOf('redirect:', 0);
	if ( i >= 0){
		document.location.href=(data.substr(9, data.length-9));
	}
	return data;
}

// pre-submit callback 
function showRequest(formData, jqForm, options) { 
    // 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); 
	$("*").addClass('wait');
    // 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: \n\n' + 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)  { 
    // for normal html responses, the first argument to the success callback 
    // is the XMLHttpRequest object's responseText property 
 
    // if the ajaxSubmit 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 ajaxSubmit 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.');
	

	
	$("*").removeClass('wait');
	bind_table_hilights();
}

function bind_thickbox()
{
	tb_init('a.thickbox, area.thickbox, input.thickbox');//pass where to apply thickbox
	imgLoader = new Image();// preload image
	imgLoader.src = tb_pathToImage;
}

function confirmLink(theLink, theMessage)
{
    // Confirmation is not required in the configuration file
    // or browser is Opera (crappy js implementation)
    confirmMsg = ' ';
    if (confirmMsg == '' || typeof(window.opera) != 'undefined') {
        return true;
    }

    var is_confirmed = confirm(theMessage);
//    if (is_confirmed) {
//        theLink.href += '&is_js_confirmed=1';
//    }

    return is_confirmed;
}

function showLoginFormMain()
{
	$('#loginFormMain').show();
	//document.onclick = closeLoginFormMain;
}

function closeLoginFormMain()
{
	$('#loginFormMain').hide();
	//document.onclick = null;
}

function showDates(did){
	did = "#"+did;
	$('.otherdates').addClass('hidden f');
	$(did).removeClass('hidden');
	$(document).unbind('click');
	$(document).click(function(){
		hideDates(did);
	});
}

function hideDates(did){
	if ( $(did).hasClass('f') ){
		$(did).removeClass('f');
		return;
	}
	else {
		$(did).addClass('hidden f');
	}
}
