slideshow = function() {
  	$('#two').hide("blind", { direction: "vertical" }, 5);
	$('#three').hide("blind", { direction: "vertical" }, 5);
	$('#one').show("blind", { direction: "vertical" }, 500);

	$('#one').animate({width:"100%"}, 6000);
    $('#one').hide("blind", { direction: "vertical" }, 500,  function() {

   			$('#one-show').removeClass('current');
    		$('#two-show').addClass('current');   
			$('#two').show("blind", { direction: "vertical" }, 500);

			$('#two').animate({width:"100%"}, 6000);
			$('#two').hide("blind", { direction: "vertical" }, 500,function() {

			   	$('#two-show').removeClass('current');
    			$('#three-show').addClass('current');
				$('#three').show("blind", { direction: "vertical" }, 500);

				$('#three').animate({width:"100%"}, 6000);
				$('#three').hide("blind", { direction: "vertical" }, 500, function() {
					$('#three-show').removeClass('current');
					$('#one-show').addClass('current');
					$('#three').hide();
					slideshow();

			});	
			
    });
    });
	return false;
};



//suckerfish
sfHover = function() {
	var sfEls = document.getElementById("nav").getElementsByTagName("li");
	for (var i=0; i<sfEls.length; i++) {
		sfEls[i].onmouseover=function() {
			this.className+=" sfhover";
		}
		sfEls[i].onmouseout=function() {
			this.className=this.className.replace(new RegExp(" sfhover\\b"), "");
		}
	}
}
if (window.attachEvent) window.attachEvent("onload", sfHover);
