
$(document).ready(function(){
		
    $('#intro-text p:first').addClass('first');
    $('.three-columns #column-one p:first').addClass('first');

    /* Controls padding with the top and bottom of the navigation menu */
    $('#main-nav li ul li:first-child a').addClass('first');
    $('#main-nav li ul li:last-child a').addClass('last');

    /* Removes / from first link and styles last (current page) link */
    $('#breadcrumbs li:last-child a').addClass('last');
    $('#breadcrumbs li:last-child').addClass('last');

    /* Removes the / image from the last link in the footer list  */
    $('#footer li:last-child').addClass('last');
});
