var site = function() {
	this.navLi = $('#nav li').children('ul').hide().end();
	this.init();
};

site.prototype = {
 	
 	init : function() {
 		this.setMenu();
 	},
 	
 	// Enables the slidedown menu, and adds support for IE6
 	
 	setMenu : function() {
 	
// 	$.each(this.navLi, function() {
// 		if ( $(this).children('ul')[0] ) {
// 			$(this)
// 				.append('<span />')
// 				.children('span')
// 					.addClass('hasChildren')
// 		}
// 	});
 	
 		this.navLi.hover(function() {
 			// mouseover
 			
 			if($.browser.msie)
            {
                //alert("hi");
                if(jQuery.browser.version == "7.0")
                {
                    var zIndexNumber = -9999; 
                    $('#right-content').css('z-index', zIndexNumber);
                    $('#contentPlace').addClass("contentPlace");
                    $('.dvImageTop').css('z-index',-9);
                    $('#countryDisplay').css('z-index',-2);
                }
            }
            
            var zIndexNumber = 99999;
			$(this).find('> ul').css('z-index', zIndexNumber).stop(true, true).slideDown('slow', 'easeOutBounce');
 		}, function() {
 			// mouseout
 			//$('#contentPlace').removeClass("contentPlace");
 			$(this).find('> ul').stop(true, true).hide(); 		
		});
 		
 	}
 
}


new site();
