﻿
	    $().ready(function() {

            // For Documents List
		    $('#divDocumentsList').hide();
    		
		    $('#linkShowDocumentsList').click(function(){
    		    $('#divPicturesList').hide('slow');
    		    $('#divDocumentsList').show('slow');
		        return false;
		    });
    		
		    $('#aCloseDocumentsList').click(function(){
    		    $('#divDocumentsList').hide('slow');
		        return false;		    
		    });

            // For Pictures List
		    $('#divPicturesList').hide();
    		
		    $('#linkShowPicturesList').click(function(){
    		    $('#divDocumentsList').hide('slow');
    		    $('#divPicturesList').show('slow');
		        return false;
		    });
    		
		    $('#aClosePicturesList').click(function(){
    		    $('#divPicturesList').hide('slow');
		        return false;		    
		    });

	    });

