function whatsOninit()
{
	jQuery("#whatsOn_List").children("li").hover(function(){jQuery(this).addClass("over");},function(){jQuery(this).removeClass("over");});
	jQuery("#whatsOn_List").children("li").mousedown(loadWhatsOnLink);
}

function loadWhatsOnLink()
{
	window.location.href = jQuery(this).children("h4").children("a").attr("href");
}

jQuery(document).ready(whatsOninit);
