$(document).ready(function(){

	$(".show").toggle(function(){ $(this).parents(".row").find(".hidden").show(); },
		function(){ $(this).parents(".row").find(".hidden").hide(); });

	$(".applyalt").click(function(){
		Lightbox.alert("Thank you for your interest in the position. This position requires a manual application.<br />Therefore in order to Apply for this Job please refer to the application process as detailed in the Job description.");
        return false;
	});

});