﻿$(function() {
		if($(".EktronPersonalizationWrapper").length > 0)
		{
			$("form[action='http://www.google.com/u/unfl']").remove();
		}
		$('#q').autocomplete({
			minLength: 1,
			source: suggestions,
			focus: function(event, ui) {
				$('#q').val(ui.item.value);
				return false;
			},
			select: function(event, ui) {
				window.location = ui.item.href;
				return false;
			},
			open:function(event, ui){
				$(".ui-autocomplete").find("li:gt(15)").hide();
				$(".ui-autocomplete").prepend("<span style='font-weight:bold;'>Quicklinks:</span>");
			}
			
		});
		
	});
