// JavaScript Document
$(function(){
		     $("#wrapper").find("DIV").not("#header, #footer").hoverIntent(
																		   function(){$(this).slideBgnd(null,400);$(this).find("a h1").css({cursor:"pointer",color:"black"})},
																		   function(){$(this).slideBgnd(0,400);$(this).find("a h1").css({cursor:"default",color:"white"})});
		   })

