﻿/*****************************************************************/
/*  This template uses the following for javascript:            
/*  jQuery:  JavaScript class library.  To use, make sure 
/*           jquery-1.2.6.min.js and jquery.curvycorners.min.js
/*           is included in your pages.  Then, make method calls to
/*           execute javascript code from here. jQuery library on 
/*           the internet is best place to start  
/*
/*  File path: jquery.js is most likely to be located in the 
/*             includes folder...
/*****************************************************************/

/******************* VARS ***************/

/************** DOCUMENT READY ****************/
/*  All jquery must start with this function
/*  and all other functions go in side it!  
/***********************************************/
$(document).ready(function()
{
    /**************** make border div a "curvy corner" *****************/
    $("#bodyborder").corner();   
    
    /***********************************************/
    
    $("#showResumeHolder").click(function(){
        $("#resumeHolder").fadeIn();
    });
    
    $("#closeResumeHolder").click(function(){
        $("#resumeHolder").fadeOut();
    });
});

