﻿$(document).ready(function() {
	
	$('a.moveToTop').click(function() {
		var $body = (window.opera) ? (document.compatMode == "CSS1Compat" ? $('html') : $('body')) : $('html,body');
		$body.animate({scrollTop: 0}, 400);
	});	

    $('.cmTextElement').cmtextconstrain({
        restrict: {type: 'chars', limit: 30},
        showControl: {string: '[more]', title: 'Show More', addclass: 'cmShowHide'},
        hideControl: {string: '[less]', title: 'Show Less', addclass: 'cmShowHide'},
        trailingString: '...'
    });
});
