$(document).ready(function(){

	if($('body').hasClass('internetexplorer')) {
		return;
	}
	// add hide links...
	$("#p-2009-07-grids ul li span").append(' (<a href="#">hide</a>)');
	// ...and make them work
	$("#p-2009-07-grids ul li span a").click(
		function(event){
			event.preventDefault();
			$this = $(this);
			id = $this.closest('li').attr('id').replace('-li','');
			$('#' + id).toggleClass('hide');
			$this.text(('hide' == $this.text())?'show':'hide');
		}
	);
});
