$(document).ready(function(){
	var intZIndex=100;

	$('ul#nav > li').each(function(i){
		$(this).css('z-index',(intZIndex-i));
	});
});
