
$(document).ready(function() 
{
	$(".facilityMenu a").each(function(index)
	{
		$(this).hover(
		function() // Hover In
		{
			$("#carondImage").addClass($(this).attr("class"));
		},
		function() // Hover Out
		{
			$("#carondImage").removeClass($(this).attr("class"));
		});
	});
});
