$(document).ready(function() {
	
	addDropDowns();
						   
});

function addDropDowns() {
	
	$(".navitem .title").bind("mouseover", function(e) {
													
		closeAllDrops();  
		$(this).children("h4").addClass("arrow");
		$(this).siblings(".dropdown").show();	  
													  
	});
	
	$(".navitem .title").bind("mouseout", function(e) {
						
		$(this).siblings(".dropdown").hide();
		$(this).children("h4").removeClass("arrow");
													  
													  
	});
	
	$(".navitem .dropdown").bind("mouseover", function(e) {
						
		closeAllDrops();
		$(this).parent().children(".title").children().addClass("arrow");
		$(this).show();							  
													  
	});
	
	$(".navitem .dropdown").bind("mouseout", function(e) {
													  
		closeAllDrops();						  
													  
	});
	
}

function closeAllDrops() {
	
	$(".navitem .dropdown").each(function() {
								
		$(this).hide();	
								
	});

	$(".navitem > .title > h4").removeClass("arrow");
	
}