$().ready( function genFilelink() { 
    
    $(".morevdesc").bind( "click", function(e) {
    	e.preventDefault();
    	this.blur();
    	showvdesc( this, true);
    });
    
    $(".lessvdesc").bind( "click", function(e) {
    	e.preventDefault();
    	this.blur();
    	showvdesc( this, false);
    });
    
});

function showvdesc(obj, isvisible) {
	if (isvisible) {
		$(obj).parent().hide();
		$(obj).parent().next().show();
	} else {
		$(obj).parent().hide();
		$(obj).parent().prev().show();
	}
	return false;
}
