
jQuery(document).ready(function($) { 

	//check if title of location menu is there
	if ($(".region-location-menu .block-content h2").is('*')) {
		
		// if so get the title of the location menu
		var location_title = $('.region-location-menu .block-content h2').text(); 
	
		//set title as the main site title
		$('#site-name a').text(location_title);
	}
});;

