$(document).ready(function() {
    /* add some custom styling for crappy browser known as IE7 */
	$("#main-nav > ul > li > ul").parent().addClass("ieflyout");
	/* fix the z-index stacking order for crappy browser known as IE7 */
	$(function() {
    	var zIndexNumber = 1000;
    	$('div').each(function() {
    		$(this).css('zIndex', zIndexNumber);
    		zIndexNumber -= 10;
    	});
    });
});// end document ready function