
/*
 * Superfish v1.4.8 - jQuery menu widget
 * Copyright (c) 2008 Joel Birch
 *
 * Dual licensed under the MIT and GPL licenses:
 * 	http://www.opensource.org/licenses/mit-license.php
 * 	http://www.gnu.org/licenses/gpl.html
 *
 * CHANGELOG: http://users.tpg.com.au/j_birch/plugins/superfish/changelog.txt
 */

// initialise plugins
$(document).ready(function() {
	$('#Nav ul.premierUL li').each(function(i) {
		$(this).children('ul').hide();
		$(this).children('ul').children('ul').hide();
		
		$(this).mouseover(function() {
			$('#Nav ul.premierUL li ul:visible').hide();
			$(this).children('ul:hidden').show();
		});
		
		$(this).children('ul').children('li').each(function(i) {
			$(this).mouseover(function() {
				$(this).children('ul').show();
			}).mouseout(function() {
				$(this).children('ul').hide();
			});
		});
	});
});
