$(function() {
		
		$("div").filter(".eventlist").hover(function() {
			$(this).addClass("eventlist_hover");
		},function() {
			$(this).removeClass("eventlist_hover");
		});
		
		$("div").filter(".eventlist").click(function() {
			window.open($(this).find('a').eq(0).attr("href"),'_top','');
			return false;
		});
	});
