function init() {
	
	/*
	// causes all external links to open in new window (replace doman.com with your domain name)
	$("a[href^='http:']").not("[href*='domain.com']").attr('target','_blank');
	*/
	
	/*
	// disables parent menu from being clicable when there is a sub-menu
	$('#navigation > li:has(ul) > a').click( function() {											  
		return false;
		}); 	
	*/
	$("#navigation > li").hover( function () {		
		$("#navigation > li").removeClass('hover');
		$(this).addClass('hover');
		},function () {
		$(this).removeClass('hover');
		}
		);
	
	}