/*

This file should contain any js scripts you want to add to the site.
Instead of calling it in the header or throwing it inside wp-head()
this file will be called automatically in the footer so as not to 
slow the page load.

*/



		$(document).ready(function(){      		
     			$('.footer-menu ul').removeClass('secondary-nav');
     		});
		
		$(document).ready(function(){ 
     		$('.menu-item').hover(function(){ 
     			var position = $(this).position(); 
     			$('.sub-menu', this).css('margin-left', position.left); 
     			$('.sub-menu', this).slideToggle('fast');
     		}); 
});


			$(window).load(function() {
				$('.flexslider').flexslider({
				  animation: "slide",
				  controlsContainer: ".flex-container"
			  });
			});

		
