$(document).ready(function() {
    	        $("#RSplitNotice").html("<tr><td colspan='5'><a href='#'>Split canvases: your image across two or three canvases.</a></td></tr>");
    	        $("#BSplitNotice").html("<tr><td colspan='5'><a href='#'>Split canvases: your image across two or three canvases.</a></td></tr>");
    	        
    	        $("#RRows").hide();
    	        $("#BRows").hide();

    	        $('#RSplitNotice').click( function() {
    	            $('#RRows').toggle();	
    		        $('#RSplitNotice').toggle();
    		        return false;
    	        });
    	        
    	        $('#BSplitNotice').click( function() {
    	            $('#BRows').toggle();	
    		        $('#BSplitNotice').toggle();
    		        return false;
    	        });
            });