// JavaScript Document
        $(document).ready(function(){
            $("a[rel^='prettyPhoto']").prettyPhoto({allowresize: false, showTitle: false, theme: 'dark_square'});
            $("a.zoom").append("<span></span>");
            $("a.zoom span").css("opacity", .65);
            $("ul#nav ul").css("opacity", .85);
            $('ul#nav > li').hover(function(){
				$('ul', this).css('display', 'block'); }, function() { $('ul', this).css('display', 'none'); });
            $("#photos a").hover(function(){
                $("img", this).fadeTo(.2, .70, function() { $(this).fadeTo("normal", 1); });}, function(){});
            $("#commentLink").click(function(){ $("#comments").slideToggle(); return false; });
            $("#closecomments").click(function(){ $("#comments").slideUp(); return false; });
        });

