$(document).ready(function() {
	//$("div.leftPanel").corner("bevel br 30px");
	$("div.rightBottom_panel").corner("bevel br 30px");
	
	baseLocation = 'http://www.hendraislesofscilly.co.uk';
	currentLocation = location.href;
	currentLocation = currentLocation.replace(baseLocation, '');															
	$('ul.menu a').each( function() 
  {
		
		if( $(this).attr('href') == currentLocation ) 
		{
			$(this).addClass('selected');
		}
	});
	$('ul.menu a:first').addClass('first');
	$('ul.menu a:last').addClass('last');
});