// dare global js scripts
//
// ================================================= //
//  links in new windows
// ================================================= //
// <a href="page.html" class="new-window">Page</a>
// 
$(function(){
    $('a.new-window').click(function(){
        window.open(this.href);
        return false;
    });
});
// ================================================= //

$(document).ready(function(){
    
    /* SHARE POPUP */
    $(".share-popup").hide();

    $("a.share").click(function(){
        if($(".share-popup").is(":hidden")){
            $(".share-popup").show();
        }else {
            $(".share-popup").hide();
        }
        
        return false;
    });
    
    /* FLICKR CAROUSEL */
    $(".flickr").jCarouselLite({
        btnNext: ".flickr-arrows-right",
        btnPrev: ".flickr-arrows-left",
        visible: 1,
        scroll: 1,
        speed: 500,
        vertical: false
    });    

});
