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

