/*
listaDelegaciones

*/


$(document).ready(function() {
  $("div.listaDelegaciones").ready( function(){
		var myFile = document.location.toString();
 		if (myFile.match('#')) { // the URL contains an anchor
		  // click the navigation item corresponding to the anchor
		  var ancla = myFile.split('#')[1];
		
			
	 	$('div.listaDelegaciones dl.delegacionesBig').hide();
			
		  $('div.listaDelegaciones dl.delegacionesBig a[name*=' + ancla + ']').parent().parent().show() ;
			$('div.listaDelegaciones h1').hide();
		//.parent().show();
				
			
		}
		$('dl.delegaciones a').click(function() {
			var myFile =  $(this).attr('href');

				if (myFile.match('#')) { // the URL contains an anchor
				  // click the navigation item corresponding to the anchor
				  var ancla = myFile.split('#')[1];


			 	$('div.listaDelegaciones dl.delegacionesBig').hide();
$('div.listaDelegaciones h1').hide();
				  $('div.listaDelegaciones dl.delegacionesBig a[name*=' + ancla + ']').parent().parent().show() ;
				//.parent().show();


				}
		});
		
		
		
	
	
	});
  });

