function showLoginDiv(){
	showLoginLoader();
	showHideDiv("loginBg",true);
	$('#email, #password, #cpassword, #first_name, #last_name, #company_name, #phone_no, #login_email, #login_password, #forgot_email').placify({cssClass: 'regPlaceHolder'});
}


function showLoginLoader(){
	var position = $('#mapArea').offset();
	$('#mapLoader').css({'top' : position.top, 'left' : position.left, 'width' : $('#mapArea').width(), 'height' : $('#mapArea').height()});
	
	$('#mapLoader img').css('position', 'absolute');
    $('#mapLoader img').css('top', '180px');
    $('#mapLoader img').css('left', ($('#mapArea').width() - $('#mapLoader img').width()) / 2 + $('#mapArea').scrollLeft() + 'px');
    
	//$('#mapLoader').fadeIn();	
}

function hideLoginLoader(){
	$('#mapLoader').css({'left' : '-99999px'});
	//$('#mapLoader').fadeOut().fadeIn();	
	showHideDiv("loginBg",false);
}
	


