/* 
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */

$(function () {
    // disable right-click contextmenu
    $(document).bind("contextmenu",function(e){
        return false;
    });

    // setup fade effect
    $("#gallery a").css("opacity", 0.3)
        .hover(function() {
            // hover on
            $(this).stop().fadeTo(500, 1)
                .parent().css("border-color", "#FF0000");
        }, function () {
            // hover off
            $(this).stop().fadeTo(500, 0.3)
                .parent().css("border-color", "#444");
        });
});