$(document).ready( function() {  
    $("#gallery a img")  
    .fadeTo(1,1)  
    .hover(   
        function(){  
            $(this).fadeTo(200, 0.5);  
        },  
        function(){  
            $(this).fadeTo(500, 1);  
        }  
    )  
    .click( function() {  
        var changeSrc = this.src;  
        $("#target").fadeOut(  
            "fast",  
            function() {  
                $(this).attr("src", changeSrc);  
                $("#imgMain a").attr("href", changeSrc);  
                $(this).fadeIn();  
            }  
        );  
        return false;  
    });  
});

function win(){ //ポップアップ
window.open("../detail/index.html","","width=750,height=760,scrollbars=yes,resizable=yes,status=yes");
}
function win_cls(){ //閉じる
window.close();
}
function new_win1(theURL) {
window.open(theURL, '', 'width=750, height=760, scrollbars=yes');
}
function new_win2(theURL) {
window.open(theURL, '', 'width=750, height=300, scrollbars=yes');
}


function addBookmark(title,url) {
    if (window.sidebar) {
        window.sidebar.addPanel('クラブゼクシー', 'http://www.club-zxy.com/',"");
    } else if( document.all ) {
        window.external.AddFavorite('http://www.club-zxy.com/','クラブゼクシー');
    } else if( window.opera && window.print ) {
        return true;
    }
}