$(document).ready(function() {
	
	// add pseudo-class functionality
	$('#nav ul li:last-child a').addClass('last-nav');
	$('#nav ul li:first-child a').addClass('first-nav');
	
	$('#nav ul li ul li a').removeClass('first-nav');
	$('#nav ul li ul li a').removeClass('last-nav');
	
	//$('#content span[style*="font-weight"]').removeAttr('style');
	//$('#content span[style*="Arial"]').removeAttr('style');
	//$('#content span[style*="color"]').removeAttr('style');
	
	// change ups verbiage to fedex
	$('.productcart .shipping_header').html('FedEx - Choose a shipping method');
	
	// force all instances of "clean-flo" to uppercase
	//var el = $('body[id!="see-how-it-works"] #content');
	//el.html(el.html().replace(/clean-flo/ig, "CLEAN-FLO"));
	
	// force target="_blank" equivalent
	$('a[rel="external"]').click(function(){
		window.open(this.href);
		return false;
	});
	
});
