// JavaScript Document

function resetsplash() {
	$("#centre-page").attr("src", siteroot + "images/splash/centre.jpg");
	$("#forest-page").attr("src", siteroot + "images/splash/forest.jpg");
	$("#conservation-page").attr("src", siteroot + "images/splash/conservation.jpg");
} // end resetsplash

$(document).ready( function() {
	/* When the document has finished loading, do the following */
	
	$("#splash .centre").bind( "mouseenter", function() {
		$("#splash").find("img").attr("src", siteroot + "images/splash/centre.jpg");
	} ).bind( "mouseleave", function() { resetsplash(); } );
	$("#splash .forest").bind( "mouseenter", function() {
		$("#splash").find("img").attr("src", siteroot + "images/splash/forest.jpg");
	} ).bind( "mouseleave", function() { resetsplash(); } );
	$("#splash .conservation").bind( "mouseenter", function() {
		$("#splash").find("img").attr("src", siteroot + "images/splash/conservation.jpg");
	} ).bind( "mouseleave", function() { resetsplash(); } );

	
	$(".cms-post-it").bind( "click", function() {
		$(this).hide("slow");
	} );
});
