function showFolderContents(folderId) {
    $('#fileList').load('/dms_folders/view/' + folderId);
}

function dmsSearch(phrase) {
    if (phrase.length > 0) {
        $('#fileList').load('/dms_files/search?phrase=' + phrase);
    }
    return false;
}

$(function () {
	$('#slideShow ul').cycle({ 
	    fx:     'fade', 
	    speed:  2000,  
	    timeout:  6000,
	    next:   '#sscBack', 
	    prev:   '#sscForth' 
	});
});