	
	
	// Adds odd / even to Doctors list
	
	//$("ol li:nth-child(1 < 10)").addClass("doctors-top10");
	$("ol.doctors li:first").addClass("doctors-top");
	$("ol.doctors li:eq(9)").addClass("doctors-10");
	$("ol.doctors li:lt(10)").addClass("doctors-top10");
	$("ol.doctors li:even").addClass("doctors-even");
	$("ol.doctors li:odd").addClass("doctors-odd");
	
	$("ol.top-list li:first").addClass("top-list-1");
	$("ol.top-list li:lt(4)").addClass("top-list-4");
	

	
	// Tell people how many characters they have left.
	$('#comment').jqEasyCounter({
			'maxChars': 102,
			'maxCharsWarning': 90,
			'msgFontSize': '12px',
			'msgFontColor': '#000',
			'msgFontFamily': 'Verdana',
			'msgTextAlign': 'left',
			'msgWarningColor': '#F00',
			'msgAppendMethod': 'insertBefore'				
		});


// Animation comment scroller
$(function() {
	$('.diagnosis-container').cycle({
		fx: 'scrollHorz',
		timeout: 0,
		random: true,
		speed: 600,
		easing: 'easeOutExpo',
		slideExpr: '.diagnosis-block',
		next: '.go-right a',
		prev: '.go-left a'
	});
});


