$(document).ready(function() {

var url = location.pathname.split("/")[3];
var activelink = $(".gallery-list-li , .newimg-list-li").find('a[href*="/' + url + '"]');
        activelink.css({
                border : "1px solid #999999",
                display: "block"
        });
        activelink.find('img').css({
                opacity : "0.2",
                margin: "-1px"
        });

$(".gallery-list-li , .newimg-list-li , #site-title img").hover(
        function() {$(this).stop().fadeTo(200,0.3);}, 
        function() {$(this).stop().fadeTo(200,1);}
        );

        $("#shirt-table a") 
        .click( function() {
        var changeSrc = $(this).attr("href");
                $("#MainImage")
                .fadeOut(240,function() {$(this).attr("src", changeSrc);$(this).fadeIn();});
        return false;
        });
});