$(document).ready(function(){
	var y = 0;
	
	$("#intro ul li a").hover(
		function () {
			y = $("#intro ul li").index($(this).parent()) + 1;
			$("#lcd").css("background-position", "0px "+"-"+y*40+"px");
			$("#lcd").stop(true,true);
		}, 
		function () {
			$("#lcd").css("background-position", "0px 0px");
			$("#lcd").stop(true,true);
		}
	);
});