/* noConflict Mode set due to problems with swfobject JS */
jQuery.noConflict();
jQuery(document).ready(function () {
	
	/* Level 2 Keyboard Navigation */
	
	jQuery('#nav-1 > li > a').focus ( function() {
		jQuery('#nav-1 > li > ul > li > ul').hide();
	});
	
	/* Level 3 Mouse Navigation */
	
    jQuery('#nav-1 > li > ul > li').hover( 
	function() { jQuery(this).children('ul').fadeIn(100); },
	function() { jQuery(this).children('ul').fadeOut(200); });
	
	/* Level 3 Keyboard Navigation */
	
	jQuery('#nav-1 > li > ul > li > a').focus ( function() {
		jQuery(this).parent().parent().children('li').children('ul').fadeOut(100); 
		jQuery(this).parent().children('ul').fadeIn(100); 
	});
	
	/* Level 4 Mouse Navigation */
	
	jQuery('#nav-1 > li > ul > li > ul > li').hover(
	function(){ jQuery(this).children('ul').fadeIn(150); }, 
	function(){ jQuery(this).children('ul').fadeOut(200); });
	
	/* Level 4 Keyboard Navigation */

	jQuery('#nav-1 > li > ul > li > ul > li > a').focus ( function() {
		jQuery(this).parent().parent().children('li').children('ul').fadeOut(100); 
		jQuery(this).parent().children('ul').fadeIn(100); 
	});


	

});