$(document).ready(function(){
	$('#midlands').hide();
	$('#northwest').hide();
	$('#northeast').hide();
	$('#yorkshire').hide();			

	$('#midbutt').click(function () {
		$('#midoff').slideToggle();
		$('#neoff').hide();	
		$('#nwoff').hide();
		$('#yoroff').hide();		
	})
	$('#nwbutt').click(function () {
		$('#nwoff').slideToggle();
		$('#neoff').hide();	
		$('#midoff').hide();
		$('#yoroff').hide();		
	})	
	$('#yorbutt').click(function () {
		$('#yoroff').slideToggle();	
		$('#neoff').hide();	
		$('#nwoff').hide();
		$('#midoff').hide();	
	})	
	$('#nebutt').click(function () {							 
		$('#neoff').slideToggle();
		$('#nwoff').hide();
		$('#midoff').hide();
		$('#yoroff').hide();
	})		

	$('.gmap-closemid').click(function() {
		$('#neoff').hide();	
		$('#nwoff').hide();
		$('#yoroff').hide();		
	})

	$('.gmap-closenw').click(function() {									  
		$('#neoff').hide();	
		$('#midoff').hide();
		$('#yoroff').hide();		
	})

	$('.gmap-closene').click(function() {
		$('#neoff').hide();	
		$('#nwoff').hide();
		$('#yoroff').hide();		
	})
	$('.gmap-closeyor').click(function() {								   
		$('#neoff').hide();	
		$('#nwoff').hide();
		$('#midoff').hide();		
	})	
});	

$(document).ready(function(){	
$('#midlandsbut').bt({
  positions: 'top',
  contentSelector: "$('#midlands')", /*hidden div*/
  trigger: 'click',
  closeWhenOthersOpen: true,
  clickAnywhereToClose: false,   
  width: 220,
  centerPointX: .9,
  spikeLength: 25,
  spikeGirth: 20,
  padding: 15,
  positions:['right'],  
  cornerRadius: 25,
  fill: '#FFF',
  strokeStyle: '#ABABAB',
  strokeWidth: 1  
});
});	

$(document).ready(function(){	
$('#northwestbut').bt({
  positions: 'top',
  contentSelector: "$('#northwest')", /*hidden div*/
  trigger: 'click',
  closeWhenOthersOpen: true,
  clickAnywhereToClose: false,   
  width: 220,
  centerPointX: .9,
  spikeLength: 25,
  spikeGirth: 20,
  padding: 15,
  positions:['left'],
  cornerRadius: 25,
  fill: '#FFF',
  strokeStyle: '#ABABAB',
  strokeWidth: 1
});
});
	
$(document).ready(function(){	
$('#northeastbut').bt({
  positions: 'top',
  contentSelector: "$('#northeast')", /*hidden div*/
  trigger: 'click',
  closeWhenOthersOpen: true,
  clickAnywhereToClose: false,  
  width: 220,
  centerPointX: .9,
  spikeLength: 25,
  spikeGirth: 20,
  padding: 15,
  positions: ['right'],
  cornerRadius: 25,
  fill: '#FFF',
  strokeStyle: '#ABABAB',
  strokeWidth: 1
});
});

$(document).ready(function(){	
$('#yorkshirebut').bt({
  positions: 'top',
  contentSelector: "$('#yorkshire')", /*hidden div*/
  trigger: 'click',
  closeWhenOthersOpen: true,
  clickAnywhereToClose: false,   
  width: 220,
  centerPointY: 0.5,  
  spikeLength: 25,
  spikeGirth: 20,
  padding: 15,
  positions:['right'],
  cornerRadius: 25,
  fill: '#FFF',
  strokeStyle: '#ABABAB',
  strokeWidth: 1
});
});