jQuery(document).ready(function(){

	jQuery('ul li:first').addClass('first');
	jQuery('ul li:last').addClass('last');
	jQuery('#nav ul').parent().addClass('submenu');
	
	// Home Featured area zebra
	jQuery('.featured .box h2:odd').addClass("odd");
	
	// Add Span to first word of all headers
	/*jQuery('h1, h2, h3, h4, h5, h6').each(function(){
		var me = jQuery(this);
		if ( me.children().size() > 0 ) {
			 var newme = me.children('a');
			 newme.html(newme.html().replace(/^(\w+)/, '<span class="headercolor">$1</span>'));
		} else {
			me.html(me.html().replace(/^(\w+)/, '<span class="headercolor">$1</span>'));
		}
	});*/


}); // doc.ready
