$().ready(function() {
	$('#apply .locations li img, #apply .locations li .info').hover(
		function() {
			$('#apply .locations li .info strong').removeClass('active');
			$(this).closest('li').find('.info strong').addClass('active');
		},
		function() {
			$('#apply .locations li .info strong').removeClass('active');
		}
	);
});