
$(document).ready(function() {	

	


		$("#dv_2").hover(function () {
	
		$(".underRecrutment").css({
				display:"block"
			})
	     }, 
	      function () {
	      $(".underRecrutment").css({
				display:"none"
			})
	      });    

	$(".underRecrutment").hover(function () {
	
			$(".underRecrutment").css({
				display:"block"
			})
			return false
	     }, 
	      function () {
	      	$(".underRecrutment").fadeOut("fast")
	      });    



		$("#dv_5").hover(function () {
	
			$(".underRecrutment2").css({
					display:"block"
				})
		     }, 
		      function () {
		      $(".underRecrutment2").css({
					display:"none"
				})
		      });    
	
		$(".underRecrutment2").hover(function () {
		
				$(".underRecrutment2").css({
					display:"block"
				})
				return false
		     }, 
		      function () {
		      	$(".underRecrutment2").fadeOut("fast")
		      });    

});



