// JavaScript Document


$(document).ready(
	function() {
		
		$(".navigation .relative").hover(function(){
		$(this).children(".popup1").show();
		$(this).children(".popup").show();
		},function(){
		$(this).children(".popup1").hide();
		$(this).children(".popup").hide();
		});
				
	});