$(document).ready( function() {
	var txt = $("#caption").html();
	var newtxt = "";
	if(vmtxtlim) {
		var txtspli = txt.split(" ");
		if(txtspli.length > vmtxtlim) {
			for(var i=0; i < vmtxtlim; i++) {
				newtxt += txtspli[i] + " ";
			}
			newtxt += "... <span class='readmore'>read more</span>";
			$("#caption").html(newtxt);
		}
	}
	
	$(".readmore").click( function() {
		var txtspli = txt.split(" ");
		newtxt = "";
		for(var i=0; i < txtspli.length; i++) {
			newtxt += txtspli[i] + " ";
		}
		$("#caption").html(newtxt);
	});
});
