/*
 * JS for openbyhand
 */
 $(document).ready(function(){
    
    // open external links in a new window
    $('a[rel="external"]').click( function() {
        window.open( $(this).attr('href') );
        return false;
    });
    
    // set opacity on flickr thumbnails
    $('#photos li a').css({
        opacity:"0.3"
    }).hover(
        function(){
            $(this).animate({
                opacity:"1"
            }, 250);
        },
        function(){
            $(this).animate({
                opacity:"0.3"
            }, 250);
        }
    );
});