$(document).ready(function(){
	if ($.browser.msie == true) {
		$(".points a").mouseover(function(){ $(this).parent().find(".content").show(); });
		$(".points a").mouseout(function(){	$(this).parent().find(".content").hide(); });
	} else {				
		$(".points a").hover(function(){$(this).parent().find(".content").stop(true,true).fadeIn();}, function(){$(this).parent().find(".content").stop(true,true).fadeOut("slow");})
	}
	$(".points .content").mouseover(function(){	$(this).hide();	});

	slideShow();
	setInterval("slideShow()",5000);
});

function slideShow() {
	if ($(".quote:visible").next(".quote").html()!=null){
		$(".quote:visible").fadeOut().next(".quote").fadeIn();
	} else {
		$(".quote:visible").fadeOut();
		$(".quote:first").fadeIn();
	}
}