$(function() {
	$('.services-list a').each(
		function() {
			var txtlen = $(this).text().length;
			if(txtlen<23) $(this).parent().addClass('single-line');
		}
	);
	$('#home-carousel').cycle({pause: true,timeout:5000});
	
	$('.search-button').click(function(){
		$(this).parents('form').submit();
		return false;
	});
	
	
});
