$(document).ready( function() {
 	$("#forest-switches span").mouseover(function () {
    	var $this = $(this);
    	$("#slides div").hide();
    	$("#slide" + $this.attr("id").replace(/switch/, "")).fadeIn("fast");
    });    
});

