Static splash screen image prior to homepage

Hi,

Is there a way to show a static splash image before the home page? I've tried Simple Pages plugin but it looks like any other page on the website (http://sms-sandbox.parsons.edu/guatemaladespues/).

Here's what I have so far in terms of php:
<script type="text/javascript">
$('#splash').ready()
{
$('#main').load('file.html');
setTimeout(function() {
$('#main').ready(function() {
$('#splash').remove();
window.location.href = "file.html";
});
}, 2000);
}
</script>