var currentSlide = 0;
var slideCount = 5;
var tooltip;

$(document).ready(function(){
	$('#slideshow').cycle();

	$('#splash-cells div').hover(function(){
		$(this).animate({top: "-20px"}, 250);
		tooltip = $(tooltip ? tooltip : '<div id="tooltip" />').html(this.childNodes[0].childNodes[0].alt).appendTo(this);
	}, function(){
		$(this).animate({top: "0"}, 250);
		$(tooltip).remove();
	});

	makeMenuWorkInIE();
});