// Set old status
var os = new String();

$( function()
{
	// Hover effect for stacked icons
	$('.overzicht_lid').hover(
		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' );
		},
		function() { $(this).removeClass( 'hovered' ); }
	);
});
