$(document).ready(function()
    {

        $("img").rightClick( function(e) {

            e.preventDefault();
            alert("The images on this site are copyright protected. They were paid for specifically for use on this site. Don't steal them, you can buy them yourself very cheaply at http://www.istockphoto.com");

        })

        var height = $("h1").outerHeight() + $("div#footer").outerHeight() + $("div#page").outerHeight() + 10;
        $("div#info1").height(height);
        $("div#info1").fadeIn("slow");

        $("ul#nav ul").addClass("hidden");
        
        $("li.subcat").mouseover( function() {
            
            var toShow = $(this).children("ul:first").add( $(this).parents("ul") );
            var toHide = $("ul#nav ul").not( toShow );

            toHide.addClass("hidden");
            toShow.removeClass("hidden");

            toShow.slideDown("fast");
            toHide.fadeOut("slow");

        })

        $("ul#nav li.top").mouseover( function() {

            var toHide = (  $("ul#nav li.top").not( $(this) )   ).children("ul");        
            var toShow = ( $(this) ).children("ul");

            toHide.addClass("hidden");
            toShow.removeClass("hidden");

            toShow.fadeIn("fast");
            toHide.fadeOut("slow");


        });

        $("li.post-link").mouseover( function() {

            var toHide = $(this).parent().children("li.subcat").children("ul");
            toHide.addClass("hidden");

            toHide.fadeOut("slow");

        });
        

        $("div#mainContent, h1").mouseover( function() {

            $("ul#nav ul").fadeOut("slow");
            $("ul#nav ul").addClass("hidden");

        });
        


    $("ul#nav ul").attr("style", "display: none;");


    });

