// JavaScript Document
$(document).ready(function()
{
	//Text d'exemple formulari
	$('.clearme').example(function() {
	  return $(this).attr('title');
	});

	$('#textArea').example('Comentarios ...', {
	  className: 'textarea'
	});
	

	// validate signup form on keyup and submit
	$("#commentForm").validate({
		rules: {
			realname: {
				required: true,
				minlength: 2
			},
			email: {
				required: true,
				email: true
			},
			comentaris: {
				required: true,
				minlength: 10
			}
		},
		messages: {
			realname: {
				required: "Por favor, introduzca su nombre",
				minlength: "Su nombre debe contener al menos 2 caracteres"
			},
						
			email: "Por favor, introduzca un email v&aacute;lido",
			
			comentaris: {
				required: "Por favor, introduzca un comentario",
				minlength: "15 caracteres como m&iacute;nimo"
			}
			
		}
	});

	// LIGHTBOX
	$(function() {
		$('#uniNazaret a').lightBox({fixedNavigation:true});
		$('#refValen a').lightBox({fixedNavigation:true});		
		$('#restaurantes a').lightBox({fixedNavigation:true});		
		$('#refLoft a').lightBox({fixedNavigation:true});
		$('#varios a').lightBox({fixedNavigation:true});	
	});
	
	// SUBMENU DE PROYECTOS
	$("#itemuniNazaret").click(function () {
		$("#refValen").hide("slow"); $("#restaurantes").hide("slow"); $("#refLoft").hide("slow");$("#varios").hide("slow"); $("#uniNazaret").show("slow");
		$("#itemrefValen").removeClass("active");$("#itemrest").removeClass("active");$("#itemrefLoft").removeClass("active");$("#itemvarios").removeClass("active");
		$("#itemuniNazaret").addClass("active");
    });
	
	$("#itemrefValen").click(function () {
    	$("#uniNazaret").hide("slow");	$("#restaurantes").hide("slow"); $("#refLoft").hide("slow");$("#varios").hide("slow"); $("#refValen").show("slow");		
		$("#itemuniNazaret").removeClass("active"); $("#itemrest").removeClass("active");$("#itemrefLoft").removeClass("active");$("#itemvarios").removeClass("active");
		$("#itemrefValen").addClass("active");
    });

	$("#itemrest").click(function () {
		$("#uniNazaret").hide("slow"); $("#refValen").hide("slow"); $("#refLoft").hide("slow");$("#varios").hide("slow"); $("#restaurantes").show("slow");
		$("#itemuniNazaret").removeClass("active"); $("#itemrefValen").removeClass("active"); $("#itemrefLoft").removeClass("active");$("#itemvarios").removeClass("active");
		$("#itemrest").addClass("active");
	});

	$("#itemrefLoft").click(function () {
		$("#uniNazaret").hide("slow"); $("#refValen").hide("slow"); $("#restaurantes").hide("slow");$("#varios").hide("slow"); $("#refLoft").show("slow");
		$("#itemuniNazaret").removeClass("active"); $("#itemrefValen").removeClass("active"); $("#itemrest").removeClass("active");$("#itemvarios").removeClass("active");
		$("#itemrefLoft").addClass("active");
	});

	$("#itemvarios").click(function () {
		$("#uniNazaret").hide("slow"); $("#refValen").hide("slow"); $("#restaurantes").hide("slow"); $("#refLoft").hide("slow"); $("#varios").show("slow");
		$("#itemuniNazaret").removeClass("active"); $("#itemrefValen").removeClass("active"); $("#itemrest").removeClass("active");$("#itemrefLoft").removeClass("active");
		$("#itemvarios").addClass("active");
	});

});
