/**
 * @author Preetham
 */

//thickbox dialog setup
var href="#TB_inline?height=145&amp;width=300&amp;inlineId=sessPresDialog&amp;modal=true";
	
$(document).ready(function(){
	$("#loginButton").click(function(){
		$("span#busyImgCont").html("<img src='image/busy.gif' id='busyImg' />");
		recruiterLogin("false");
		
	});

	//submit on enter event
	$("#loginForm").keypress(function (e){
		if(e.which == 13) {
			$("span#busyImgCont").html("<img src='image/busy.gif' id='busyImg' />");
			recruiterLogin("false");
		}
	});
	

	$("#termOtherSession").click(function(){
		recruiterLogin("true");
	});
	
	$("#cancelMyLogin").click(function(){
		//tb_remove();
		$.unblockUI();
		$("span#busyImgCont").empty();
	});
	
	//unblock the ui
    $('.closeDlg').click(function() {
        $.unblockUI();
        return false;
    });
	
 });
 
