// JavaScript Document
$j(document).ready(function() {
	var winLoc = window.location.href;
	if ((winLoc.indexOf('heckout') > -1) || (winLoc.indexOf('hipping') > -1)) {
		
		$j('body.cartPage .col-styleNum a').each(function() {
			// ADD THIS BACK IN TO DISPLAY EC Number as Text
			//var prodId = $j(this).text();									
			//$j(this).parent().append('<p>' + prodId + '</p>').children('a').remove();
			$j(this).remove();
		});
		$j('body.cartPage td.col-desc a').each(function() {
			var prodId = $j(this).text();									
			$j(this).parent().prepend(prodId).children('a').remove();
		});
	}
	if ((winLoc.indexOf('shop') < 0) && (winLoc.indexOf('home') < 0)  && (winLoc.indexOf('contact') < 0)) {
		/*$j('head').append('<link rel="stylesheet" type="text/css" href="/Content/2010/css/content-pages.css">');*/
		//Yes, it's silly to add this, but IE6 doesn't support pseudo selectors so that's why this is here
		$j('#pageContainer input:text, #pageContainer input:password').css({'border' : '1px solid #BEBEBE', 'color' : '57575B', 'font-size' : '11px', 'padding' : '2px 3px'});
	}
});