$(document).ready(function(){
	$('.contact_us').click(
		function ()
		{
			var DivHtml=''+
			'<table border=0 bgcolor="#F1EDE2" width="100%" height="100%">'+
				'<th height="5%" align="right" valigh="middle">'+
						'<img src="'+base_url+'images/red_error.gif"'+
							'onclick="HideCoverDivScreen(\'coverDiv\', \'contentDiv\'); return false;">'+
				'</th>'+
				'<tr>'+
					'<td>'+
						'<iframe frameborder="0" src="'+base_url+'mcd_email/contact_us/0/" '+
						'align="center" width="100%" height="100%" marginheight="0" marginwidth="0" scrolling="no">'+
						'</iframe>'+
					'</td>'+
				'</tr>'+
			'</table>';
	
			ShowCoverDivScreen('coverDiv', 'contentDiv', '400', '400', DivHtml);
			
		return false;
		}
	);
	
	$('.forgot_pass').click(
		function ()
		{
			var DivHtml=''+
			'<table border=0 bgcolor="#F1EDE2" width="100%" height="100%">'+
				'<th height="5%" align="right" valigh="middle">'+
						'<img src="'+base_url+'images/red_error.gif"'+
							'onclick="HideCoverDivScreen(\'coverDiv\', \'contentDiv\'); return false;">'+
				'</th>'+
				'<tr>'+
					'<td>'+
						'<iframe frameborder="0" src="'+base_url+'contractors/forgot_pass/" '+
						'align="center" width="100%" height="100%" marginheight="0" marginwidth="0" scrolling="no">'+
						'</iframe>'+
					'</td>'+
				'</tr>'+
			'</table>';
	
			ShowCoverDivScreen('coverDiv', 'contentDiv', '400', '400', DivHtml);
			
		return false;
		}
	);
	
	$('.email_contractor').click(
		function ()
		{
			var DivHtml=''+
			'<table border=0 bgcolor="#F1EDE2" width="100%" height="100%">'+
				'<th height="5%" align="right" valigh="middle">'+
						'<img src="'+base_url+'images/red_error.gif"'+
							'onclick="HideCoverDivScreen(\'coverDiv\', \'contentDiv\'); return false;">'+
				'</th>'+
				'<tr>'+
					'<td>'+
						'<iframe frameborder="0" src="'+base_url+'mcd_email/contractor/'+this.id+'" '+
						'align="center" width="100%" height="100%" marginheight="0" marginwidth="0" scrolling="no">'+
						'</iframe>'+
					'</td>'+
				'</tr>'+
			'</table>';
	
			ShowCoverDivScreen('coverDiv', 'contentDiv', '400', '400', DivHtml);
		}
	);
	
	$('.calendar_input_click_check, .calendar_input').focus(
		function ()
		{
			alert("To select a date please click the calendar icon\nto the right of this input field.");
		}
	);
	
	$('#logout_btn').click(
		function ()
		{
			if($('#setup_process').val()==1)
			{
				alert("You have not completed your setup process.\nYour listing will not appear until you have\ncompleted your setup process.\nUncompleted accounts will be deleted after 5 days.");
			}
		}
	)
	
	$('#signup').click(
		function ()
		{
			var save_form=true;
			var error_message='';
			
			if(!ValidateEmailSyntax())
			{
				save_form=false;
				error_message+="Invailed email syntax\n";
			}
			
			if(!save_form)
			{
				alert("Please fix the below errors:\n"+error_message);
				return false;
			}
		}
	);
	
});
