if($){
	$(document).ready(function(){
	
	    $("#layer-toggle-list li a").click(function () {
	    	var theId = $(this).attr('rel');
	    	var theOid = '#layer-' + theId;
	    	var linkText = $(this).html();
	    	var newText;
	    	
	    	if ($(this).hasClass('toggle-on') ) {
	    		$(this).removeClass('toggle-on');
	    		$(this).addClass('toggle-off');
	    
	    		newText = linkText.replace('hide','Show');
	    		newText = linkText.replace('Hide','Show');
	    		$(this).html(newText);
	    		$(theOid).fadeOut('normal');
	    		
	        } else {
	    		$(this).removeClass('toggle-off');
	    		$(this).addClass('toggle-on');
	    
	    		newText = linkText.replace('show','Hide');
	    		newText = linkText.replace('Show','Hide');
	    		$(this).html(newText);
	    		$(theOid).fadeIn('normal');
	    		
	        }
	        
	    });
	
	
	});

}