// JavaScript Document
var ccmDocLibrary = { 
		
	detailsOver: function(fvID){ 
		clearTimeout(this.activePopupTmr);
		$('.ccm_doc_library_expandable').not('#ccm_doc_library_expandable_'+fvID).hide(300);
		this.activePopup = $('#ccm_doc_library_expandable_'+fvID);
		this.activePopup.show(400);
		return false;
	}, 
	
	detailsOut:function(){
		this.activePopupTmr = setTimeout( '$(".ccm_doc_library_expandable").hide(300);', 1000);
	}
	
}
