// code for navigation

$(document).ready(function() {
	$(".nav").ready(function() { // scan the page for any navigations
		$(".sub").hide(); // hide the sub menus
		
		$(".sub").parent().mouseover(function(){
			$(this).children(".sub").show(); // show the sub menu
		});
		
		$(".sub").parent().mouseout(function(){
			$(this).children(".sub").hide(); // hide the sub menu
		});
	});
	
	$(".sub").hover(function(){
   $(this).show();
   $(this).parent().children("a.services").addClass("servicesActive");
   $(this).parent().children("a.ourteam").addClass("ourteamActive");
   $(this).parent().children("a.portfolio").addClass("portfolioActive");
   $(this).parent().children("a.about-us").addClass("about-usActive");
     },function(){
   $(this).hide();
   $(this).parent().children("a.services").removeClass("servicesActive");
   $(this).parent().children("a.ourteam").removeClass("ourteamActive");
   $(this).parent().children("a.portfolio").removeClass("portfolioActive");
   $(this).parent().children("a.about-us").removeClass("about-usActive");
  	 });
	
});
