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