// Set old status
var os = new String();

$( function()
{
	// Hover effect for stacked icons
	$('.overview li,.kennis_overview tr,.agenda_overview tr')
		.live( 'mouseover', function() {
			// Get the url from the rel
			var url = $(this).attr( 'rel' );
			
			// Set the old status
			os = window.status;
			
			// Set the status bar
			window.status = url;
			
			// Do the hover effect
			$(this).addClass( 'hovered' );
		})
		.live( 'mouseout', function() {
			// Remove the hovered state and return the
			// old statusbar text.
			$(this).removeClass( 'hovered' );
			window.status = os;
		});
	
});
