var WISER = {};

/* list of image names */
WISER.images = "gifted,thinking,learning,critical,problem,creative,prefect,oxbridge,medic,leadership,philosophy".split(',');

/* preload the images */
$.each (WISER.images, function (item) {
	var img = new Image;
	img.src = '/_assets/images/home/' + WISER.images[item] + '.jpg';
});

$(function () {
	$("dt a").each (function (idx) {
		$(this).click (function ()
		{
			$(this).parent().siblings('dd').hide();
			$(this).parent().next().show();
			$("#course-image").css("background-image", "url(/_assets/images/home/"+WISER.images[idx]+".jpg)");
			$(this).blur();
			return false;
		}); 
	});
});