$(function() {
	$("#selectNav").each(function() {
		$(this).change(function(ev) {
			document.location.href = '/shop/category/' + ev.target.value;
		})
	});
	
	$("#product_nav a").each(function() {
			var parts  = this.id.split('_');
			this.uid = 0;
			if (parts && parts.length > 2) {
				this.uid = parts[2];	
			}
			$(this).hover(
				function() {
					if (this.uid && this.uid > 0) {
						$("#default_product_name").css({display:"none"});
						$("#product_name_" + this.uid).css({display:"inline"});
					}	
				}, 
				function() {
					if (this.uid && this.uid > 0) {
						$("#default_product_name").css({display:"inline"});
						$("#product_name_" + this.uid).css({display:"none"});
					}	
				}
			);
	});
	
});