$(document).ready(function() {
			
				$('a').focus(function() {
				$(this).blur();
				});

			$('.zoom').lightBox();
			$('#popupclose').css( {cursor: "pointer"} ).click(function(){
					$('#popup').fadeOut('slow')
					})
					
			$('#menu a')
				.css( {backgroundPosition: "0 0"} )
				.mouseover(function(){
					$(this).stop().animate(
						{backgroundPosition:"(0 -35px)"}, 
						{duration:300})
					})
				.mouseout(function(){
					$(this).stop().animate(
						{backgroundPosition:"(0 0)"}, 
						{duration:600})
					})

			}); 
