$(document).ready(function() {	
	// SimpleLayout sets a cookie 'edit_mode' when clicking on 'edit'
	// of a page; we only want to see the title when editing	
	if (readCookie('edit_mode')==1) {$('.hideinview').show();};
	$('#contentview-edit a').click(function(){
		$('.hideinview').show();
	});
});
