$(function(){
	
	// hover del value en inputs de header
	$('#frm_login').submit(function(){
		var valorNIS = jQuery.trim($('#rut').val());
		if(valorNIS != '' ) {
			return true;
		} else {
			$('.error').remove();
			$('#rut').after('<label class="error" for="rut" generated="true">Este campo es requerido.</label>');
			return false;
		}
	});


	//======================
	// modal imagenes
	//======================
	$("a[href$=jpg]").not("[rel^=biblioteca]").prettyPhoto();
	$("a[href$=gif]").not("[rel^=biblioteca]").prettyPhoto();
	$("a[href$=png]").not("[rel^=biblioteca]").prettyPhoto();
	
	//slide sitemap
	$("#sitemap h3").click(function(){
		$(this).next().slideToggle('slow');
	});

});


