// JavaScript Document
$('document').ready(function(){
  
  
  $(function() {
	var zIndexNumber = 1000;
	$('div').each(function() {
		$(this).css('zIndex', zIndexNumber);
		zIndexNumber -= 10;
	});
});
  
  $('li.dropdown').hover(
    function(){
      $('ul', this).slideDown(100);
    },
    function(){
       $('ul', this).slideUp(100);
    }
  );
});
