/// <reference path="jquery-1.3.2.min-vsdoc.js" />

$(document).ready(function() {

    /*$("#gallery_nav_toggle").click(function(e) {
        e.preventDefault();
        $("#gallery-categories").slideToggle("normal");
    });
    
    /*$("img.toggle_image").hover(
        function(e) {
            var slashIndex = this.src.lastIndexOf("/");
            var url = this.src.substring(0, slashIndex + 1);
            var extIndex = this.src.lastIndexOf(".");
            var ext = this.src.substring(extIndex + 1);
            this.src = url + this.id + '_out.' + ext;
        },
        function(e) {
            var slashIndex = this.src.lastIndexOf("/");
            var url = this.src.substring(0, slashIndex + 1);
            var extIndex = this.src.lastIndexOf(".");
            var ext = this.src.substring(extIndex + 1);
            this.src = url + this.id + '_in.' + ext;
        }
    );*/

    $("img.active_tab").click(function(e) {
        return false;
    });

    /*$("#footer img")
        .css({ opacity: 0.7 }); /*
        .hover(function() {
                $(this).animate({ opacity: 1.0 });
            },
            function() {
                $(this).animate({ opacity: 0.7 });
            });*/
});