document.observe("dom:loaded", function() {
	// --- Main menu
	$$('.menu a').each(function(item) {
		var li = item.up('li');
		if (li.hasClassName('active')) {
			li.setStyle({
				backgroundColor: '#ccc'
			});
		}
		item.observe('mouseover', function() {
			if (!li.hasClassName('active')) {
				li.setStyle({
					backgroundColor: '#ccc'
				});
			}
		});
		item.observe('mouseout', function() {
			if (!li.hasClassName('active')) {
				li.setStyle({
					backgroundColor: 'transparent'
				});
			}
		});
	});
	// --- Product Menu (Cufon fix)
	$$('.product-ul a').each(function(item) {
		var li = item.up('li');
		item.observe('mouseover', function() {
			if (!li.hasClassName('active')) {
				item.setStyle({
					'color': '#abb7c2'
				});
				Cufon.replace(item, {
					fontFamily: 'helvneuelight',
					hover: true,
					hoverables: true
				});
			}
		});
		item.observe('mouseout', function() {
			if (!li.hasClassName('active')) {
				item.setStyle({
					'color': '#fff'
				});
				Cufon.replace(item, {
					fontFamily: 'helvneuelight',
					hover: true,
					hoverables: true
				});
			}
		});
	});
});

