jQuery.validator.addMethod('required_group', function(val, el) {
	var $module = $(el).parents('div.leadform');
	return $module.find('.required_group:filled').length;
}, 'Please enter phone # or email.');

function scrollerload() {
	//alert('inside scroller load function');
	$("div.scrollable").scrollable({circular: true}).autoscroll({ autoplay: true, interval: 15000 });
};

