$(document).ready(function(){

	// show the grid toggles
	$("#toggle_grid").show();

	// toggle the wrapper grid
	$("#toggle_grid a").click(function(){
		$(this).text($(this).text() == 'Show grid' ? 'Hide grid' : 'Show grid');
		$("#wrapper").toggleClass("showgrid");
		return false;
	});


/*
	// toggle the wrapper grid
	var grid_image = 'url(/images/grid.png)';
	var no_image = 'none';

	$("#toggle_grid a").click(function(){
		$(this).text($(this).text() == 'Show grid' ? 'Hide grid' : 'Show grid');
		if ($("#wrapper").css('background-image') == grid_image) {
			$("#wrapper").css('background-image',no_image);
		} else {
			$("#wrapper").css('background-image',grid_image);
		}
		return false;
	});
*/


});
