/***************************************
 * Master.js
 * jQuery functions for Polynesian Spa
 ***************************************/

/* 
 * NavSlide
 * Add slide-out effect on hover, and add .over class to make it work in IE6
 * Created by Richard Westenra, 9-11-10
 */
function navSlide(){
	$(".navSlide li ul").css('display','none'); //set initial display value so that it works the first time
	$(".navSlide li").hover(function() {
		$(this).children('ul').stop(true,true).slideDown('fast');
		$(this).addClass('over'); //add class for IE6
	},function() {
		$(this).children('ul').stop(true,true).slideUp('fast');
		$(this).removeClass('over'); // remove class for IE6
	});
};

/* 
 * NavIE6
 * Add .over class to make dropdown nav menus work in IE6
 * Created by Richard Westenra, 10-11-10
 */
function navIE6(){
	$(".navIE6 li").hover(function() {
		$(this).addClass('over'); //add class for IE6
	},function() {
		$(this).removeClass('over'); // remove class for IE6
	});
};
