		$(document).ready(function() {
			$("#bottompuff").click(function() { location.href = '#'; })
			$("#bottompuff2").click(function() { location.href = '#'; })

			//Append a div with hover class to all the LI
			$('#navMenu li').append('<div class="hover"><\/div>');
				$('#navMenu li').hover(
				//Mouseover, fadeIn the hidden hover class	
				function() {
					$(this).children('div').stop(true, true).fadeIn('500');	
				}, 
				//Mouseout, fadeOut the hover class
				function() {
					$(this).children('div').stop(true, true).fadeOut('500');	
			})
			$('.bottompuff').append('<div class="hover"><\/div>');
				$('.bottompuff').hover(
				//Mouseover, fadeIn the hidden hover class	
				function() {
					$(this).children('div.hover').stop(true, true).fadeIn('500');	
					$(this).addClass('bottompuffover'); 
				}, 
				//Mouseout, fadeOut the hover class
				function() {
					$(this).children('div.hover').stop(true, true).fadeOut('500');	
					$(this).removeClass("bottompuffover");
			})
			$('.bottompuff2 h3 a').append('<div class="hover"><\/div>');
				$('.bottompuff2 h3 a').hover(
				//Mouseover, fadeIn the hidden hover class	
				function() {
					$(this).children('div.hover').stop(true, true).fadeIn('500');	
					$(this).addClass('bottompuffover'); 
				}, 
				//Mouseout, fadeOut the hover class
				function() {
					$(this).children('div.hover').stop(true, true).fadeOut('500');	
					$(this).removeClass("bottompuffover");
			})
			$('.bottom2puff').append('<div class="hover"><\/div>');
				$('.bottom2puff').hover(
				//Mouseover, fadeIn the hidden hover class	
				function() {
					$(this).children('div.hover').stop(true, true).fadeIn('500');	
					$(this).addClass('bottompuffover'); 
				}, 
				//Mouseout, fadeOut the hover class
				function() {
					$(this).children('div.hover').stop(true, true).fadeOut('500');	
					$(this).removeClass('bottompuffover'); 
			})
			$('.bottom2puff2').append('<div class="hover"><\/div>');
				$('.bottom2puff2').hover(
				//Mouseover, fadeIn the hidden hover class	
				function() {
					$(this).children('div.hover').stop(true, true).fadeIn('500');		
					$(this).addClass('bottompuffover'); 
				}, 
				//Mouseout, fadeOut the hover class
				function() {
					$(this).children('div.hover').stop(true, true).fadeOut('500');
					$(this).removeClass('bottompuffover'); 
			})
			$(".btn-slide").click(function(){
				$("#worldwide").slideToggle("slow");
				$(this).toggleClass("active"); return false;
			}); 
		});
