﻿
$(function() {

    $('#resume-email-outer').hoverIntent({
        over: function() {
            $('#arrow-to-me-outer').css('display', 'block');
            $('#arrow-to-me').animate({ 'height': '645px', 'width': '760px' }, 1000, 'linear', null);
        },
        out: function() {
            $('#arrow-to-me-outer').css('display', 'none');
            $('#arrow-to-me').animate({ 'height': '0px', 'width': '0px' }, 100, 'linear', null);
        },
        sensitivity: 5,
        interval: 200,
        timeout: 0
    });

    $('.resume-article').roundedCorners();
    $('.resume-award').roundedCorners();
    $('.resume-cover').roundedCorners();
    $('.resume-education').roundedCorners();
    $('.resume-experience-content').roundedCorners();
    $('.resume-references').roundedCorners();
    $('.resume-skills').roundedCorners();
    
});

