//<![CDATA[

/**
 * @author usaelraton.com
 */

$(document).ready(
	function(e)
	{
		$(".contenedor-desplegable").hover(
			function() { $(this).children(".desplegable").slideDown(); },
			function() { $(this).children(".desplegable").slideUp(); }
		);
	}
);

//]]>

