var SITE = {
		nav: function() {
			$(this)
				.bind('mouseenter', function(){
					$(this).addClass('hover');
				})
				.bind('mouseleave', function(){
					$(this).removeClass('hover');
				});
		},
				
		init: function() {
		  
			// Navigation
			$('#nav li').each(SITE.nav);
    
		}
	};

$(document).ready(function () {
    SITE.init();
});

<!--DD_belatedPNG.fix('.box a img');-->
