/**
 *  Filename: 	control.js
 *  Author:     Jason S. Webb
 *
 *  NOTE:       jquery must be loaded prior to loading this file
 */
$(document).ready(function(){

    // Print links
    $(".printthis").click(function(){
        window.print();
    });
});