// JavaScript Document
 $(document).ready(function() {
   $("#pintura-sublinks").hide();
   $("#noticias-sublinks").hide();
   $("#obra-sublinks").hide();
   $("#header").hide().fadeIn("slow");
   var myFile = document.location.toString();
   if (myFile.match('#')) { // the URL contains an anchor
   // click the navigation item corresponding to the anchor
     var url = myFile.split('#')[1];
	 var cat = url.split('/')[0];
	 var cat2 = url.split('/')[1];
	 if (cat == 'pintura') {
		 // Show obra sublinks
		 $("#obra").css("font-weight","bold");
		 $("#obra-sublinks").show("slow");

		//show pintura sublinks
		 $("#obra").css("font-weight","bold");
		 $("#pintura").css("font-weight","bold");
		 $("#pintura-sublinks").show("slow");
		 $(cat2).css("font-weight","bold");

		$('#main').attr('src', 'obra/' + url + '/index.html').fadeIn('slow');
		
	 } else if (cat == 'noticias'){
		 // Show noticias sublinks
		 $("#noticias").css("font-weight","bold");
		 $("#noticias-sublinks").show("slow");
		 $('#main').attr('src', '' + url + '/index.html').fadeIn('slow');
	 } else {
		if (url == 'Escultura') {
			$("#obra").css("font-weight","bold");
			$("#obra-sublinks").show("slow");
			$("#escultura").css("font-weight","bold");
			$('#main').attr('src','obra/' +  url + '/index.html').fadeIn('slow');
		} else if (url == 'Noticias') {
			$("#noticias").css("font-weight","bold");
			$("#noticias-sublinks").show("slow");
//			$('#main').attr('src', url + '/index.html').fadeIn('slow');
	    } else if(url != ''){
			$('#' + url).css("font-weight","bold");
			$('#main').hide().attr('src', url + '.html').fadeIn('slow');
		}
	 } 
		 
	 
   }

   $("#obra").click(function(){
	 $("#pintura-sublinks").hide("slow");
	 $("#noticias-sublinks").hide("slow");
	 $("#pintura").css("font-weight","normal");
	 $("#escultura").css("font-weight","normal");
	 $("#obra").css("font-weight","bold");
	 $("#obra-sublinks").show("slow");
   });
   
   $("#pintura").click(function(){
	 $("#obra").css("font-weight","bold");
	 $("#pintura").css("font-weight","bold");
	 $("#escultura").css("font-weight","normal");
	 $("#pintura-sublinks").show("slow");
   });

	$("#escultura").click(function(){
	 $("#obra").css("font-weight","bold");
	 $("#escultura").css("font-weight","bold");
	 $("#pintura").css("font-weight","normal");
	 $("#pintura-sublinks").hide("slow");
   });
   
   $("#primary-links a").each(function(){
      $(this).click(function(){
         $("#primary-links a").css("font-weight","normal");
         $(this).css("font-weight","bold");
      });
   });
   $("#noticias").click(function() {
	 $("#pintura-sublinks").hide("slow");
	 $("#obra-sublinks").hide("slow");
	 $("#noticias-sublinks").show("slow");
	 $("#noticias").css("font-weight","bold");
   });
   $("#contacto").click(function() {
	 $("#pintura-sublinks").hide("slow");
	 $("#obra-sublinks").hide("slow");
	 $("#noticias-sublinks").hide("slow");
   });
   $("#trayectoria").click(function() {
	 $("#pintura-sublinks").hide("slow");
	 $("#obra-sublinks").hide("slow");
	 $("#noticias-sublinks").hide("slow");
   });
   $("#footer").hide().load("footer.html").fadeIn("slow");
   
   $("#pintura-sublinks a").each(function(){
      $(this).click(function(){
         $("#pintura-sublinks a").css("font-weight","normal");
         $(this).css("font-weight","bold");
      });
   });
   
 });
