function hover() {
	$(this).toggleClass("over");
}

$(function() {
	$('#slideshow').cycle();
	$("#top_menu > li").hover(hover, hover)
})