$(function() {

		// correct IE 7 and lower z-index problem
		var zIndexNumber = 1000;
		$('div').each(function() {
			$(this).css('zIndex', zIndexNumber);
			zIndexNumber -= 10;
		});
	
		// fade the banner
		$('.fade-in').fadeIn(400);
		
		// nav
		// jQuery('ul.sf-menu').superfish();		
		// -------------------------------------------------------------------------------------
		
		

		
		
});	


