﻿/*
	From: ddmenu.js
	Changed By: Rory Dueck
	Date: 03-04-10
  Description: Converted to jQuery inorder to handle instances where '#navWrap' doen't exsit and recall.
*/

$(function() {
	$("#navWrap").find("li").each(function() {
		$(this).mouseover(function() {
			$(this).addClass("sfhover")
		}).mouseout(function() {
			$(this).removeClass("sfhover")
		})
	})
});
