/*
 * File: Javascript for the main page
 * Author: Daniel Hough
 * Function: For hiding the welcome message smoothly
 */
$(document).ready(function(){
    $(".hidethismessage").click(function() {
        var parent = $(this).parent();
        parent.children("div#video").hide(function(){
            parent.slideUp();
        });
    });
});
