$(function () {
	var zindex = 1000;
	
	$('#nav a').hover(function () {
		$(this).css('z-index', zindex++ );
	});
});
