﻿/*
	From:       ddmenu.js
	Changed By: Rory Dueck
	Date:       06-17-09
    Description: Converted to jQuery inorder to handle instances where '#navWrap' doen't exsit and recall.
	Date:				12-22-09
		Description: Made it easier to add multiple navs
*/

$(function() {
		var	navWraps = $('#navWrap');
			
    $.each(navWraps.find("li"), function() {
			$(this).mouseover(function() {
			$(this).addClass("sfhover")
		}).mouseout(function() {
			$(this).removeClass("sfhover")
		})
		
	})
});
