﻿/* IE7 z-index Fix */
$(function() {
	var zIndexNumber = 1000;
	$('div').each(function() {
		$(this).css('zIndex', zIndexNumber);
		zIndexNumber -= 10;
	});
});
/* END IE7 z-index Fix */


