$(function() {
	
	// Fix IE7 z-index issue:  http://www.vancelucas.com/blog/fixing-ie7-z-index-issues-with-jquery/
	//
	var zIndexNumber = 1000;
	$('div').each(function() {
		$(this).css('zIndex', zIndexNumber);
		zIndexNumber -= 10;
	});

});

