
	$(document).ready(function(){
			
		/*to fix IE z-index issues*/
		var zIndexNumber = 1000;
		$('div').each(function() {
			$(this).css('zIndex', zIndexNumber);
			zIndexNumber -= 10;
		});
					   
						
	$('ul#navigation li').hover(
		function(event) { 
			$('ul', this).css('display', 'block');
			$('a:first',this).addClass('navli_active');
		},
		function(event) { 
			$('ul', this).css('display', 'none'); 
			$('a:first', this).removeClass('navli_active');
		});
	});
