/* ------------------------------------------------------------ */
/* --
/* -- Another great navigation by Layer Lovers
/* -- Details, prices and more at http://www.layerlovers.com
/* --
/* -- Javascript file for : 0109 | animated
/* --
/* -- Coded by Ryan | Layer Lovers All rights reserved
/* --
/* ------------------------------------------------------------ */

/* Variables -> */

var speed = 10 /* You can define the speed of the animation, in milliseconds (1000 = 1sec) */

$(document).ready(function(){
	
	
	$('ul#menu li.submenu').hover(function(){ 
			$(this).find('ul:first').css({visibility: "visible",display: "none"}).slideToggle(speed);
       },function(){ 
        $(this).find('ul:first').css({visibility: "hidden"}).slideToggle(speed);
   });
	
});


