// JavaScript Document

$jQ = jQuery.noConflict();//Avoids conflict with mooTools

$jQ(document).ready(function(){
     $jQ(function() {
	var zIndexNumber = 1000;
	$jQ('div').each(function() {
		$jQ (this).css('zIndex', zIndexNumber);
		zIndexNumber -= 10;
	});
});
});
