$(document).ready(function(){

    // Swap images for navigation
	$.swapImage(".swapImage");

    // Open link in a new window
    $(function(){
        $('a.new-window').click(function(){
            window.open(this.href);
            return false;
        });
    });

    // Clear form inputs
    $(function() {
    	$('input.clear').resetDefaultValue(); // for some elements
    });

    // Lightbox
    $(function() {
        $('#thumbs a').lightBox(); // Select all links in object with gallery ID
    	$('#athletic a').lightBox(); // Select all links in object with gallery ID
    });

});