sfHover = function() {
	$("ul.drop-down").hover(function() {
		$(this).parent().addClass("event");
	},
	function() {
		$(this).parent().removeClass("event");
	});
}

navigator.appName == "Microsoft Internet Explorer" ? attachEvent('onload', sfHover, false) : addEventListener('load', sfHover, false);

$(document).ready(function() { //Request to have Mother's Day on left navi to link to Archival category
	$("a[href='http://www.mignonfaget.com/shop/category/mothers-day.html']").attr('href', 'http://www.mignonfaget.com/shop/category/archival.html')						   
});