$("ul#navigations li a").hoverIntent(
	function () {$(this).animate({backgroundColor: "#ffffff", color:"#bbb"}, "20");    },
	function () {$(this).animate({backgroundColor: "#f2f2ff", color:"#bbb"}, "50");    }
);


$(document).ready(function(){
	$('ul#navigation li').hoverIntent(
	function() { $('ul', this).stop(true, true).slideToggle("fast"); },
	function() { $('ul', this).stop(true, true).slideToggle("fast");  });
});

$(document).ready(function() {
 
 	$("img").each(function() {
  		if($(this).attr("alt") != '') $(this).attr("title", "")
  		else $(this).attr("title", "Click to view image")
  	})
  	$(".gallery").append("<p>click on an image to view it full size.</p>");
 
});