$(document).ready(function(){
						   
	//This function colors the bullet of every LI tag on the page and
	//wrap its content into a span colored with the same color as the MainText div
	
	//The color of the LI bullets:
	var bullet_color = '#003D79';
	
	/***************************************************************************/
	$('li').each(function(){
		var li_value = $(this).html();
		li_value = '<span class="li_text">' + li_value + '</span>';
		$(this).html(li_value);
		
		
		$(this).css('color', bullet_color);					  
		}); 
	
	var current_color = $('#MainText').css('color');
	$('.li_text').css('color', current_color);
	
});
