$(document).ready(function(){
			
// Navigation
		$('input.submit').hover(function() {
				$(this).attr("src","/images/addtocart-over.gif");
				}, function() {
			$(this).attr("src","/images/addtocart.gif");
		});
		
// moveNotice
$('#moveNotice').click(
			function(){ window.location = "http://www.nahomeopathy.co.uk"; 
		});

			
	
// Email hider
		$(function(){
		var spt = $('dd.mailme');
		var at = / at /;
		var dot = / dot /g;
		var addr = $(spt).text().replace(at,"@").replace(dot,".");
		$(spt).after('<a href="mailto:'+addr+'" title="Send an email">'+ addr +'</a>')
		.hover(function(){window.status="Send a letter!";}, function(){window.status="";});
		$(spt).remove();
		});

		 
}); 
	    


	
	
	


