$(document).ready(function() {
	
	$('.showhide').append('<a href="#" title="Reservation and Contact options can be found here" class="show-link">Reservations &amp; Contact</a>');
	$('.show-link').live('click', function() {
		$('#reservations-panel, #reservations-panel-large').animate({top:0});
		$('.show-link').replaceWith('<a href="#" title="Close" class="hide-link">Close</a>');
		return false;
	});
	$('.hide-link').live('click', function() {
		$('#reservations-panel, #reservations-panel-large').animate({top:-115});
		$('.hide-link').replaceWith('<a href="#" title="Reservation and Contact options can be found here" class="show-link">Reservations &amp; Contact</a>');
		return false;
	});
	
	$("a[rel='gallery-slideshow']").colorbox({slideshow:true,slideshowSpeed:8000,transition:'elastic',speed:500,current:''});
	
	// open external http in new window
	$("a[href^='http:']").not("[href*='sinalei.com']").attr('target','_blank');
	// open external https in new window
	$("a[href^='https:']").not("[href*='sinalei.com']").attr('target','_blank');
});
