$(function() {
	$('.info_request').bind("submit",check_required);
	function check_required() {
		var result = true;
		$(':input').each( 
			function() {
				if((($(this).attr('name') == 'name' ||
					$(this).attr('name') == 'company' ||
					$(this).attr('name') == 'typeofbusiness' ||
					$(this).attr('name') == 'address' ||
					$(this).attr('name') == 'city' ||
					$(this).attr('name') == 'prov' ||
					$(this).attr('name') == 'postal' ||
					$(this).attr('name') == 'tel' ||
					$(this).attr('name') == 'email'	)
					&& $(this).attr('value') == '') 
					|| 
					($(this).attr('name') == 'country' && $(this).attr('selectedIndex') == 0)){
						$('#err-msg').html('Some Required Fields Are Blank.');
					 	result = false;
				 }		
			});
		
     		if(!result) $('html, body').animate({scrollTop: '0px'}, 300);
			return result;
		}
});