// FANCYBOX OPTIONS http://fancybox.net //
$(document).ready(function() {
	$("a[rel]").fancybox({
		'titlePosition' 	: 'outside'
		});
});


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

