/*
* JQUERY SIMPLE MENU 
* BY HTTP://WWW.LASTWEBDESIGNER.COM
*/


$(document).ready(function(){
var Duration = 300; //time in milliseconds
var top_1 = 30;
var top_2 = 20;
		
	      $('li.first').hover(function() {
			  
			 $('ul.second').show();
	        $('ul.second').animate({ top:top_1 }, Duration);
			
	      }, function() {
			
			 $('ul.second').hide();	        
			 $('ul.second').animate({  top:top_2 }, Duration);
	      });


			
	      $('li.first_2').hover(function() {
			 $('ul.second_2').show();  
	        $('ul.second_2').animate({ top:top_1 }, Duration);
			
	      }, function() {
			
	        $('ul.second_2').hide();
			 $('ul.second_2').animate({ top:top_2}, Duration);
	      });



			
	      $('li.first_3').hover(function() {
			 $('ul.second_3').show();  
	        $('ul.second_3').animate({ top:top_1 }, Duration);
			
	      }, function() {
			
	        $('ul.second_3').hide();
			 $('ul.second_3').animate({ top:top_2 }, Duration);
	      });




			
	      $('li.first_4').hover(function() {
			 $('ul.second_4').show();  
	        $('ul.second_4').animate({ top:top_1 }, Duration);
			
	      }, function() {
			
	        $('ul.second_4').hide();
			 $('ul.second_4').animate({ top:top_2}, Duration);
	      });




			





});


