/**
 * @author pcarvajal
 */

$(document).ready(function(){
	
	$(document).pngFix();

	$('#recomendacion_browser').slideDown();
	$('#recomendacion_browser .cerrar').click(function(){
		$.get('index.php?cerrar_recomendacion=true', function(){
			$('#recomendacion_browser').slideUp();
		})
	});
	/* Menues desplegables */
	$('.desplegable').click(function(){
		if ($(this).children('ul').css('display') == 'none') {
			$(this).siblings().children('ul').slideUp();
			$(this).children('ul').slideDown();
		} else {
			$(this).children('ul').slideUp();
		}
	});
	
});