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

