jQuery.noConflict();

jQuery(document).ready(function () {

	jQuery('ul#nav').rdm();
	
	jQuery('#searchfield').autocomplete({
			source: dataSource,
			minLength: 2,
			select: function(event, ui) {
				jQuery('#searchfield').val(ui.item.label);
				window.location.href = ui.item.url;
			}
		});

});

(function ($) {

    jQuery.fn.rdm = function () {
        $('a', this).removeAttr('title');
        $('li', this).hover(function () {
			// $(this).css('backgroundPosition', '-210px -45px');
            $(this).find('ul:first').css('visibility', 'visible');
        },
        function () {
			// $(this).css('backgroundPosition', '-210px -45px');
            $(this).find('ul:first').css('visibility', 'hidden');
        });
    };
	

	
})(jQuery);
