// JavaScript Document

$("document").ready(function(){
					
	$(".btn_submit").click(function(event){
		event.preventDefault();	
		$(this).parents("form").submit();
	});
	
	$(".tab").hover(function(){
		$("div.dropdown").hide();
		var id = $(this).attr("id");
		$("div." + id).fadeIn(500);				 
	});
	
	$(".tab_selected").hover(function(){
		$("div.dropdown").hide();
		var id = $(this).attr("id");
		$("div." + id).fadeIn(500);				 
	});
	
	$(".main_nav").hover(function(){
								  
	},function() {
		var id = $(this).attr("id");
		$("div.dropdown").fadeOut(200);
	});
	

});
