function careerForm(){

var careerID

		$('img.applyOnline').click(function(){
			
		careerID = $(this).attr('id');
		$('#'+careerID+'Form').show('slow');

});


		$('img.careerClose').click(function(){
			
		$(this).parent().hide('slow');

});



}
