$(document).ready(function() {
   	setupZindexes();
});

function setupZindexes()
{/*
 // TODO - THIS DOES NOT WORK
	var zIndexNumber = 1000;
	$('#headerContainer div').each(function() {
		
		//alert($(this).attr('id'));
		
		if($(this).attr('id') == 'header' || $(this).attr('id') == 'takeTheQuizContainer' || $(this).hasClass('logo') || $(this).hasClass('nav') || $(this).hasClass('storeindev') ||  $(this).hasClass('storesindev') )
		{
			
		}
		else
		{
			
		//	alert();
			
				$(this).css('zIndex', zIndexNumber);
				zIndexNumber -= 10;
			}
	
	});
*/
}
