$(document).ready(function(){
    $("#splash").click(function(){
        $("#social_media").show();
        $("#img_banner").show();
        $("#bottom_nav").show();
        $("#addr").show();
        $("#links").show();
        $("#splash").fadeOut("slow");
    })
    if($("#splash").css("display")){
        $("#social_media").hide();
        $("#img_banner").hide();
        $("#bottom_nav").hide();
        $("#addr").hide();
        $("#links").hide();
        $("#splash").show();
    }
})
