$(document).ready(function(){
	
	$('a.colorbox').colorbox({
		close: 'Close'
	});
	
	$('#locations div:not(:first-child) address').hide();
	
	$('#locations div a').mouseover(function(){
		var $this = $(this).siblings('address');
		
		if ($this.is(':hidden'))
		{
			$('#locations div address:visible').slideUp('fast');
			$this.slideDown('fast');
		}
	});
	
});
