

    $(document).ready(function(){
        $('.share_block .print').click(function(event){
            window.print();
            event.preventDefault();
        });


        $('.share_block .facebook a, .share_block .twitter a').click(function(event){
            href = $(this).attr('href');

            li_class = $(this).parents('li').attr('class').replace(' ', '_');
            popup('popup_' + li_class, href, 800, 400);

            event.preventDefault();
        });


        $('.share_block .permalink a').click(function(event){
            href = window.location;
            link_code = '<a href="'+href+'">' + document.title + '</a>';
            title = $(this).attr('title');

            dialog = $('<div />').addClass('popup').attr('title', title).appendTo('body').dialog({
                autoOpen: true,
                minWidth: 500,
                minHeight: 100,
                resizable: false,
                modal: true,
                draggable: false
            });

            $('<p />').html('Please use the html code below to create a simple text link to this page from your website or blog.').css({
                marginBottom: 10
            }).appendTo(dialog);

            content = $('<textarea />').css({
                width: 460,
                height: 50,
                border: '1px solid black',
                padding: 5
            }).val(link_code).appendTo(dialog);

            event.preventDefault();
        });


    });

