// 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);
	},

	showPropertiesDialog: function (src) { 
		var settings = {
			modal:"false",
			width:"630",
			height:"450",
			title: ccmi18n.properties, 
			href:src
		};
		
		
		
		$.fn.dialog.open(settings);
		///index.php/tools/required/files/properties?fID=;?>
		//console.log(fID);	
		return false;
	}
}

ccm_chooseAsset = function(obj) { 
	return false;
}