// Dom
$(document).ready(function(){
	
	// Portfolio Animation
	$('.boxgrid.captionfull').hover(function(){
		$(".cover", this).stop().animate({bottom:'0px'},{queue:false,duration:160});
	}, function() {
		$(".cover", this).stop().animate({bottom:'-100px'},{queue:false,duration:160});
	});
	
	// Header Banner Fade
	$("#headerWrapper").css('display', 'none');
	$("#headerWrapper").fadeIn("slow");
	
	$('.formError').slideDown(200);
	$('.formSuccess').slideDown(200);
	
	$('#menu li a').hover(
						  function () {
							  $(this).animate({ left: 10 }, 400 );
						  },
						  function () {
							  $(this).animate({ left: 0 }, 100 );
						  }
						  );

}); 




// IE6 PNG Fix
if (jQuery.browser.msie) { if(parseInt(jQuery.browser.version) == 6) $("img").pngfix(); }

