﻿$(document).ready(function(){

	/*$('#main-buttons ul li a').hover(function(){
		$(this).children('div').filter(':not(:animated)').fadeIn(400);
		$(this).parent('li').children('div.dropdown').filter(':not(:animated)').fadeIn(400);
		$(this).css("cursor","pointer");},function(){
		$(this).children('div').fadeOut(200);
		$(this).parent('li').children('div.dropdown').fadeOut(200);
		$(this).css("cursor","default");
	});*/
	
	$('#main-buttons ul li').mouseenter(function(){
		$(this).addClass('selected');
		$(this).find('div.link, div.dropdown').filter(':not(:animated)').delay(200).fadeIn(400);
		//$(this).css("cursor","pointer");
		
		//var test;
		//test = $(this).css('z-index');
		//alert(test);
		
	});
	
	$('#main-buttons ul li a').click(function(){
	
	if ($(this).parents('li').hasClass('selected')){
			/*$(this).addClass('selected');
			$(this).find('div.link, div.dropdown').filter(':not(:animated)').fadeIn(400);
			$(this).css("cursor","pointer");*/
		}
		else
		{
			event.preventDefault();
			$('#main-buttons ul li div.link, #main-buttons ul li div.dropdown').stop(true, true).fadeOut(200);
			$('#main-buttons ul li').removeClass('selected');
			$(this).parents('li').addClass('selected');
			$(this).parents('li').find('div.link, div.dropdown').filter(':not(:animated)').fadeIn(400);
			$(this).parents('li').css("cursor","pointer");
		};
	});
		
	$('#main-buttons ul li').mouseleave(function(){
		$(this).removeClass('selected');
		$(this).find('div.link').stop(true, true).fadeOut(200);
		$(this).find('div.dropdown').stop(true, true).fadeOut(200);
		//$(this).css("cursor","default");
	});


	
	$('article#art-header header#main-header nav#main-nav ul li div').hover(function(){
		$(this).children('a').filter(':not(:animated)').fadeIn(400);},function(){
		$(this).children('a').fadeOut(200);
	});
	($('#menu6 div a').html() == "Logout" ? $('#menu6').addClass('active') : $('#menu6').removeClass('active'));
	
		

});

