$(document).ready(function(){
	
	//THIS ALMOST WORKS BUT THE CHILD IS FADING OUT WHEN YOU LEAVE A PARENT HOVER
	/*
	$('#navigation li').hover(function(){
		//mouseover
		$(this).find('> ul').stop(true, true).fadeIn(300);
		}, function() {
		//mouseout
		$(this).find('> ul').stop(true, true).fadeOut(0);
	});
	
	$('#navRoot li.current_page_item ul').stop(true, true).fadeIn(300);
	*/
	
	
	
	
	//SOME KINDA WEIRD SHIT GONNIN ON BELOW THAT I CAN'T GET TO WORK
	/*
	$('#navigation li.page_item').children('ul').hide().end();
	*/
	
	/*
	$('#navigation li.page-item-2').hover(function(){
		//mouseover
		$(this).find('> ul').stop(true, true).fadeIn(300);
		}, function() {
		//mouseout
		$(this).find('> ul').stop(true, true).fadeOut(0);
	});
	
	$('#navigation li.page-item-137').hover(function(){
		//mouseover
		$(this).find('> ul').stop(true, true).fadeIn(300);
		}, function() {
		//mouseout
		$(this).find('> ul').stop(true, true).fadeOut(0);
	});
		
	$('#navigation li.page-item-6').hover(function(){
		//mouseover
		$(this).find('> ul').stop(true, true).fadeIn(300);
		}, function() {
		//mouseout
		$(this).find('> ul').stop(true, true).fadeOut(0);
	});
	
		
	/*
	$('#navigation li.page_item').hover(function(){
		//mouseover
		$(this).find('> ul').stop(true, true).fadeIn(300);
		}, function() {
		//mouseout
		$(this).find('> ul').stop(true, true).fadeOut(0);
		
		//$(this).find('> ul').stop(true, true).delay(200).fadeOut(100);
	});
	*/
	//$('#navigation li.current_page_parent ul.children').show();
	//$('#navigation li.current_page_parent').children('ul').show().end();
	
	
	
	//$('#navigation li.current_page_parent').children('ul').fadeIn(slow);
	
	/*
	$('#navigation li.page_item').hover(function(){
		//mouseover
		//$(this).addClass('active');
		$('#navigation li.current_page_item').removeClass('current_page_item').addClass('currentHover');
		$('#navigation li').removeClass('current_page_ancestor').addClass('hiddenAncestor')
		}, function() {
		//mouseout
		//$(this).removeClass('active');
		$('#navigation li.currentHover').addClass('current_page_item').removeClass('currentHover');
		$('#navigation li.hiddenAncestor').addClass('current_page_ancestor').removeClass('hiddenAncestor');
	});
	*/
});
