
/////////////*This function is for the splash banner page*//////////////////////////////
/////////////*This function fades the banner image and ENTER link*//////////////////////////////
$(document).ready(function(){
$('#index_container img').css('display', 'none');
$('p.enter').css('display', 'none');
$('#index_container img').fadeIn(2000, enter);

/////////////*This function reveals the enter link*//////////////////////////////
function enter(){
$('p.enter').slideDown('slow');
$('p.enter').css( {'border-top':'1px dashed black','border-bottom':'1px dashed black'} );
//$('p.enter').css('border-bottom', '1px dashed black');
}
});
