
$(document).ready(function(){
	$('.chooseSectorLink').bind("click", function(){
		chooseSector(this);
		return false;
	});
});

function chooseSector(x)
{
	link=$(x).attr('href');
	y=link.split('#');
	y=y.pop();
	$('#sectorBar a').each(function(){
		$(this).attr('href',($(this).attr('href').replace(/#.*/,'')));
		$(this).attr('href',$(this).attr('href')+'#'+y);
	});

	$('#sectorBar').modal({opacity:75, close:true, overlayClose:true});
}
