$(document).ready(function(){
	$('#nav a')
			.css( {backgroundPosition: "0 0"} )
			.mouseover(function(){
				$(this).stop().animate({backgroundPosition:"(-250px 0)"}, {duration:500})
			})
			.mouseout(function(){
				$(this).stop().animate({backgroundPosition:"(-500px 0)"}, {duration:200, complete:function(){
					$(this).css({backgroundPosition: "0 0"})
				}})
	});
	
	$(".no-js").css("display","block");
	
	$("img.print-content").click(function(){
		window.print();
	}).mouseover(function() {
		$(this).css("cursor","pointer");
	});
	
	$("input.search-input").focus(function(){
		this.value='';
	});	
		
});