$(document).ready(function()
{
	$('#contact-pop-up').hide();
	$('a#open-qc').click(function()
	{
		$('#contact-pop-up').show('slow');
	});
	$('a#close-qc').click(function()
	{
		$('#contact-pop-up').hide('slow');
	});

	$('form.quickContactForm').submit(function()
	{
		var ok = true;
		$(this).find('input[type=text]').each(function()
		{
			if (this.value == '')
			{
				alert('Sorry, you must complete the '+this.name.replace('_', ' ')+' field.');
				ok = false;
			}
			else if (this.name == 'Security' && this.value != '2')
			{
				alert('Sorry, you must complete the anti-spam field');
				ok = false;
			}
		});

		return ok;
	});
});