﻿	/***************************************
	Client: Food Safety
	Launch Date: 
	Author: Winston Technology Group - ITS
	***************************************/

	
	/*
	$(document).ready(function() {
		$("ul#NavigationMenu li").hover(function() { //Hover over event on list item
			$(this).css({ 'background' : '#1376c9 url(./Images/MainNavigation/topnav_active.gif) repeat-x'}); //Add background color + image on hovered list item
			$(this).find("span").show(); }, //Show the subnav 
		function() { //on hover out...
			$(this).css({ 'background' : 'none'}); //Ditch the background
			$(this).find("span").hide(); //Hide the subnav });
	
    	});  
    
	}); */
    
    
/*********************
	  Navigation
**********************/
	
	$.getJSON('http://www.SafeGlobalFood.com/PHP/menus.php', function(menudata) {
		$("#nav ul li").each( function() {
			$(this).hover(function(){
				$(this).addClass('active').append('<div class="menu"></div>');
				var n = $(this).index();
				var menuHTML = menudata.menus[n].content;
				$(this).children(".menu").hide().html(menuHTML).delay(100).slideDown('fast').hold();
			},function(){
				$(this).removeClass('active').children(".menu").remove();
			});//hover
		});	//each
	});	//getJSON
	
    
    
    
