﻿
function blink(curItem) {


	$('#' + curItem).fadeOut('slow', function() {
		$('#' + curItem).fadeIn('slow');
	});

	//blink(curItem);

}
