jQuery(document).ready(function($) {

	// IE7, I thought you were cool.
	// IE6 + IE7 z-index fix
	var zIndexNumber = 1000;
	$('div,li').each(function() {
		$(this).css('zIndex', zIndexNumber);
		zIndexNumber -= 10;
	});


	// IE6 PNG Fix
	$(document).pngFix();

	// IE6 Navmenu Stuff
	$('#navbar li').hover(function(){
		$(this).find('ul').css({display:'block'});
		$(this).find('ul ul').css({display:'none'});
	}, function() {
		$(this).find('ul').css({display:'none'});
	});


});
