$(document).ready(function(){
    //hover change images for main menu
    $('#main_menu li a img').hover(
        function(){
            //hover over
            var img_src = $(this).attr('src');
            var new_image_src = img_src.replace(".gif", "_mouse.gif");
            $(this).attr('src',new_image_src);
        },
        function(){
            //hover out
            var img_src = $(this).attr('src');
            var new_image_src = img_src.replace("_mouse", "");
            $(this).attr('src',new_image_src);
        });
    //slideshow lightbox gallery
    //$('.image_slideshow_gallery a').lightBox({fixedNavigation:true});

    //colorbox gallery
    $("a[rel='colorbox']").colorbox();
    //for second gallery on gallery page
    $("a[rel='colorbox2']").colorbox();
});



