$(document).ready(function(){
    // navigation settings
    $(".nav_box").mouseenter(function () {
        $(this).animate( {
            width:"150px",
            marginRight:"0px",
            marginLeft:"0px",
            opacity:1.0
        }, {
            queue:false,
            duration:500
        } );
    });
    $(".nav_box").mouseleave(function () {
        $(this).animate( {
            width:"130px",
            marginRight:"10px",
            marginLeft:"10px",
            opacity:0.5
        }, {
            queue:false,
            duration:500
        } );
    });

    // fancybox settings
    $("a#single_image").fancybox();
    $("a#inline").fancybox({
        'hideOnContentClick': true
    });
    $("a.group").fancybox({
        'padding': 10,
        'imageScale': true,
        'zoomOpacity': true,
        'zoomSpeedIn': 500,
        'zoomSpeedOut': 500,
        'zoomSpeedChange': 500,
        'overlayShow': true,
        'overlayOpacity': 0.75,
        'hideOnContentClick': false,
        'centerOnScroll': true
    });
    $("a.zoom").fancybox({
        'padding': 10,
        'imageScale': true,
        'zoomOpacity': true,
        'zoomSpeedIn': 500,
        'zoomSpeedOut': 500,
        'zoomSpeedChange': 500,
        'overlayShow': true,
        'overlayOpacity': 0.75,
        'hideOnContentClick': false,
        'centerOnScroll': true
    });
});


