$(document).ready(function() {
    $("a[href*=#]:not([href=#])").click(function() {
        if (location.pathname.replace(/^\//, "") == this.pathname.replace(/^\//, "") && location.hostname == this.hostname) {
            var $target = $(this.hash);
            $target = $target.length && $target || $("[name=" + this.hash.slice(1) + "]");
            if ($target.length) {
                var targetOffset = $target.offset().top;
                $("html,body").animate({ scrollTop: targetOffset }, 1000);
                return false;
            }
        }
    });

    $.each($("#art-collection ul li a"), function() {
        $(this).attr("href", function() {
            return this.href.replace(/art/, "detail");
        });
        $(this).colorbox({ href: this.href, width: 620, height: 390, title: false, opacity: .8, slideshowSpeed: 5000 });
    });

    $("a[rel='chihulyxiv']").colorbox({ slideshow: true, opacity: .8 });
});


function displayClass(showClass, callingElement) {
	$("." + showClass).slideDown("slow");
	$(callingElement).fadeOut("slow");
	return false;
}