var site = function(){
	//this.banner = $j("#accordionGiftLelo").msAccordion({defaultid:0});
	this.navLi = $j('#nav > li').children('ul').css('display', 'none').end();
	this.disLi = $j('#distributor').children('ul').css('display', 'none').end();
	this.moreSpan = $j('#content-bottom-images li a').children('span').css('display', 'none').end();
	this.init();
};

site.prototype = {
	init : function(){
		this.setMenu();
	},
	
	//Enables the slidedown menu, and adds support for IE6
	setMenu : function(){
		//Home Nav
		this.navLi.hover(function(){
			// mouseover
			$j(this).find('> ul').stop(true, true).slideDown(250);
			$j(this).find('ul li').addClass("hover");
		}, function(){
			//mouse out
			$j(this).find('> ul').stop(true, true).fadeOut(200);
		});
		
		//Distributor Nav
		this.disLi.hover(function(){
			// mouseover
			$j(this).find('> ul').stop(true, true).slideDown(250);
			$j(this).find('ul li').addClass("hover");
		}, function(){
			//mouse out
			$j(this).find('> ul').stop(true, true).fadeOut(200);
		});
		
		//More text of home bottom images
		this.moreSpan.hover(function(){
			//mouseover
			$j(this).find('> span').stop(true, true).slideDown(190);
		}, function(){
			//mouse out
			$j(this).find('> span').stop(true, true).slideUp(190);
		});
	}
}

new site();
