$(document).ready(function()
{
	$('input[name=authorEmailConfirm]').blur(function()
	{
		var emailValue = $(this).val();
		// Only fill if field is empty and blur field has valid email address.
		if($('input[name=authorContactEmail]').val().length == 0 && true)
			$('input[name=authorContactEmail]').val(emailValue);
	});
	
	$('input[name=queryAnonymous]').change(function()
	{
		var newValue = $(this).val();
		// Select "through site" contact method if selected anonymous.
		if(newValue == 'Yes')
			$('input[name=authorContact]').val(['Site']);
	});
	
	$('input:radio[name=topshelf]').change(function()
	{
		var currValue = $('input:radio[name=topshelf]:checked').val();
		
		if(currValue == 'All')
		{
			$('.industryList input[name=industries]').attr('disabled', false);
			$('#Industry_TopShelf').attr('disabled', true);
			$('input[name=SocialWebsites]').attr('disabled', false);
		}
		else
		{
			$('.industryList input[name=industries]').attr('disabled', true);
			$('#Industry_TopShelf').attr('disabled', false);
			$('input[name=SocialWebsites]').attr('disabled', true);
		}
	});
});