/* Author: Aaron Taylor, 6-2 Design

*/
$(document).ready(function() {
	$('.ie8 .menu li .children').css('opacity','0');
	$('.menu li').hover(function() {
		$(this).children('.children')
			.css({ 
				opacity: 0,
				display: 'block'
			})
			.fadeTo(150,1);
		}, function() {
		$(this).children('.children').css('display','none')
	})
/*	$('.page-nav li').hover(function() {
		$(this).stop()
	}, function() {
	
	}); */
});






















