$(function(){
	
	//======================
	// modal
	//======================
	$("a[rel^='biblioteca']").prettyPhoto();
	$("a[href$=jpg]").not("[rel^=biblioteca]").prettyPhoto();
	$("a[href$=gif]").not("[rel^=biblioteca]").prettyPhoto();
	$("a[href$=png]").not("[rel^=biblioteca]").prettyPhoto();

	
	//======================
	// header
	//======================
	
	// toggle mapa del sitio
	$('#despliega_mapasitio').click(function(){
		$('#mapa_sitio').slideToggle();
	});
	
	// buscador en focus
	var msjBuscar = "Buscar";	

	$("#s").val(msjBuscar);
    $("#s").css({ "color":"#666666", "font-style":"italic" });	
	$("#s").focus(function(){	
		if ($(this).val() == msjBuscar){
			$(this).val("");
		    $(this).css({ "color":"#000000", "font-style":"normal" });
		}
	});
	$("#s").blur(function(){
		if (jQuery.trim($(this).val()) == ""){
			$(this).val(msjBuscar);			
		    $(this).css({ "color":"#666666", "font-style":"italic" });
		}	
	});
	
	//======================
	// home
	//======================
	
	// accordion home
	$('#accordion').simpleAccordion();

	// accordion sidebar
	$('#menu_lateral .cms-nav-left-menu ul').hide();
	$('#menu_lateral .cms-nav-left-menu').find('.selected').parent().find('ul').show();
	$('#menu_lateral .cms-nav-left-menu').find('.selected').parent().parent().show();
/*	
	// comportamiento hover calugas h3
	$("#calugas_seccion h3").animate({
		"opacity": .8
	});
*/			
	$("#calugas_seccion h3").hover(function() {
		$(this).stop().animate({"opacity": 1});
	}, function(){
		$(this).stop().animate({"opacity": .5});
	});

});
