$(document).ready(function() {
	$("li").filter(".slide").hover(
	function() {
	$(this).addClass("slide-hover");
	},
	function() {
	$(this).removeClass("slide-hover");
	});
	$("li").filter(".slide").click(function() {
	var thelink = $(this).find('a').eq(0).attr("href");
	window.open(thelink,'_top','');
	return false;
	});
});

