$(function () {
    $("#switches li").mouseover(function () {
    	var $this = $(this);
    	$("#slides div").hide();
    	$("#slide" + $this.attr("id").replace(/switch/, "")).show();
    });
});