/* Author: 
Copyright 2011 Matthew Homa / Sketchbox Design, Inc.  All rights reserved.
*/

$(window).load(function() {
	//$('.content').hide().fadeIn();
	
	$('.homelogo').delay(800).fadeIn("slow", menu);
	function menu() {
		$('#homenav').delay(200).fadeIn("slow", content);
	}
	function content() {
		$('#home').delay(200).slideDown("slow");
	}
});



$('#contactForm').hide();

$("#message").click(function () {
      $("#contactForm").slideDown("slow");
});

$('.rightColText').hide().delay(200).slideDown("slow");


$('#credits').hide();

$("#sbd img").mouseover(function () {
      $("#credits").show("fast");
});

$("#sbd").mouseout(function () {
      $("#credits").hide("fast");
});













