// JavaScript (JQuery) Document

$("document").ready(function(){
		
// Submit a form when btn_submit clicked
	$(".btn_submit").click(function(event){
		event.preventDefault();	
		$(this).parents("form").submit();
	});
	
// Show Specific Dropdown || ID Assigned to <li> || Class assigned to dropdown <div>
	$(".nav_bar li").hover(function(){
		$("div.dropdown").hide();
		var id = $(this).attr("id");
		$("div." + id).fadeIn(500);				 
	});
	
// Hide all dropdowns when mouse leaves navigation area	
	$(".nav_bar").hover(function(){								  
	},function() {
		var id = $(this).attr("id");
		$("div.dropdown").fadeOut(200);
	});
	

});
