/**
 * Things to run automatically
 */
$(document).ready(function(){
	
	// Add hover ability to ie6 nav items
	if ($.browser.msie && $.browser.version==6) {
		$('#nav > ul > li').mouseenter(function(){
			$(this).addClass('hover');
		}).mouseleave(function(){
			$(this).removeClass('hover');
		});
	}
	
});