﻿$(function () {

    $("h1").FontEffect({
        shadow: true,
        shadowOffsetTop: 2,
        shadowOffsetLeft: 2,
        shadowBlur: 1,
        shadowOpacity: 0.1
    });
    
    // try to copy to the clipboard or don't allow copy
    $('span.encoded').bind('copy', function (e) {
        if (window.clipboardData) {
            var arr = $(this).html().split("");
            arr.reverse();
            window.clipboardData.setData('text', arr.join(""));
        } else {
            // do nothing  
        }
        // prevent default
        return false;
    });

    $('.clickable').click(function () {
        window.location = $(this).attr('follow');
    });

    $('.hoverItem').live('mouseover', function () { $(this).addClass('hovered'); });
    $('.hoverItem').live('mouseout', function () { $(this).removeClass('hovered'); });


});   

