// *************************** jQuery Initialisation **************************** //


$(document).ready(function() {

	//Manage click events
	$(".applyJob").click(function(){
		var oForm = document.vacForm;

		//load selected links
		$.ajax({
			type: "GET",
			url: "details_apply.asp",
			data: "metaTitle="+oForm.metaTitle.value+"&reference="+oForm.reference.value+"&emailDisplay="+oForm.emailDisplay.value,
			success: function(data){
				$("#applyForm").html(data);
			},
			error: function(e){
				$("#applyForm").html("There has been an error: " + e).removeClass().addClass("error");
			}
		});
	});

	/* Home Ribbons */

	$("#homeRibbons a").mouseover(function() {
		
		//Extract sector name fromh ome ribbon
		var sectorName = $(this).attr("id").split("_")[1];
		
		//Hide all vacancies
		$(".vacancyHomepage").hide();
		$("#homeRibbons a").removeClass("active");
		
		//Show latest jobs for this sector
		$("#vacancyHomePage_"+ sectorName).show();
		$(this).addClass("active");

	});


});



