jQuery(function(){
	jQuery('#main a[href]').each(function(){
		var a = jQuery(this);
		var href = a.attr('href');
		if (absolutePath(href) === location.href) {
			//a.css({"color":"#CC0000","text-decoration":"underline"});
			a.css({color:"green",textDecoration:"underline"});
			a.addClass('active');
		}
	});


	function absolutePath(path){
		var e = document.createElement('span');
		e.innerHTML = '<a href="' + path + '" />';
		return e.firstChild.href;
	}

	jQuery('#menu-global-nav #menu-item-1116 a[href]').each(function(){
		var a = jQuery(this);
		var href = a.attr('href');
		rObj = new RegExp("product");
		//alert(location.href.match(rObj));
		if (location.href.match(rObj)) {
			a.css({color:"#fff"});
		}
	});


});
