jQuery(function($){
  $("ul li:first-child").addClass("firstchild");
  $("ul li:last-child").addClass("lastchild");
	$("a").each(function(){
		if( $(this).attr('href')=='http://www.mains-fedwatercoolers.co.uk/purchase-coolers/mf-installation-kits/' || $(this).attr('href')=='http://www.mains-fedwatercoolers.co.uk/purchase-coolers/mf-installation-service/' || $(this).attr('href')=='http://www.mains-fedwatercoolers.co.uk/purchase-coolers/product-category/' ) {
			$(this).css({display:'none'});
		}
	});
	$('.wpsc_buy_button_custom').click(function(){
		$('#fancy_notification').show('slow');
	});
});

hover = function() {
	var sfEls = document.getElementById("header").getElementsByTagName("LI");
	for (var i=0; i<sfEls.length; i++) {
		sfEls[i].onmouseover=function() {
			this.className+=" hover";
		}
		sfEls[i].onmouseout=function() {
			this.className=this.className.replace(new RegExp(" hover\\b"), "");
		}
	}
}
if (window.attachEvent) window.attachEvent("onload", hover);// JavaScript Document

function highlight(field) {
       field.focus();
       field.select();
}
