// <![CDATA[

$(document).ready(function(){
	
	newsletter_form_setup();

});

function newsletter_form_setup() {
	$('form#newsletter').submit( function() {
		$.getScript($(this).attr("action") + "?" + $('form#newsletter').serialize() )
		return false;
	});
}


function recruitment_times() {
	$('#recruitment_time_all input').click( function() {
		if( $(this).attr('checked') == true ) {
			$('li.times input').attr('checked', 'checked');
		}
		else {
			$('li.times input').removeAttr('checked');
		}
	});
}

// ]]>
