$(document).ready(function () {
	$('#mnewsbar p:first').addClass('active');
	setInterval(function () {
		
		$('#mnewsbar p.active').removeClass('active').fadeOut(200,function () {
			if ($(this).next().size() > 0)
				$(this).next().addClass('active').fadeIn(200);
			else
				$('#mnewsbar p:first').addClass('active').fadeIn(200);
			
		});
		
	},3000);

	$('#mboxes .box h3 a').colorize('orange');

});
