var pulseData = {
	'.redpulse': {	textColors: ['#58585A','#FF0000'], speed: 500},
	'.greenpulse': {textColors: ['#58585A','#00FF00'], speed: 500},
	'.bluepulse': {	textColors: ['#58585A','#0000FF'], speed: 500},
	'.err':	{		backgroundColors: ['#FFF','#FF0000'], speed: 1000}
	
};

$(document).ready(function() {
	pulse();
});

function pulse() {
	$('.pulse').each(function() {
		var c = $(this).css('color')+';'+$(this).attr('colors');
		c = c.split(';');
		$(this).pulse({textColors: c});
		$(this).css('font-weight','bold');
	});
}