/*plugin for appending more link to long text*/
jQuery.fn.extend({ 
	moreLink: function(height) { 
		return this.each(function() { 
			if($(this).height() > height){
				$(this).height(height);
				$(this).css('overflow','hidden');
				$(this).css('display','block');
                $(this).after("<a style='font-size:10px;padding:0px 10px;color: #226b8b;' href='#'>more</a>").next("a").click(function(){
                		$(this).prev().height('auto');
             		$(this).hide();
                     return false;
                });
	            }else {
	            	$(this).height(height);
	            }
		});
	} 
});
