JQ(document).ready(function() {
	//JQ("#slider #history-active").hide();
	
	JQ("#slider").hover(
		function()
		{
		JQ("#slider #history-active").fadeIn("fast");
		JQ("#slider #history-inactive").fadeOut("fast");
		
		},
		function()
		{
		JQ("#slider #history-inactive").fadeIn("fast");
		JQ("#slider #history-active").fadeOut("fast");
		}
	);
});
