// Rollover functions for handwritten notes

$(document).ready(function() {

    /* $('#signInRollBtn').hover(function() {
        $('.rolloverInner').stop(true, true);
        $('.signIn .rolloverInner').css({width: '186px', height: '63px', zIndex: '200'});
        $('.signIn .rolloverInner').animate({opacity: 1.0}, 100, "swing", function() {
            $('#header').mousemove(function(e){
                $('.signIn .rolloverInner').css({top: e.pageY-73+'px', left: e.pageX+40+'px'});
            }); 
        });
    }, function() {
        $('.signIn .rolloverInner').animate({opacity: 0.0}, 300, "swing", function() {
            $('.signIn .rolloverInner').css({top: '-200px', left: '0px'});
        });
    }); */
});

