// JavaScript Document
$(document).ready(
				  function(){
					  $('#myGallery').galleryView();
					  $('#accordion').accordion();
					/*$('.offerDiv > .offerOpt').hide();
					  $('.offerDiv > .offerOpt:first').show();
					  $('.offerDiv h4').click(
											   function(){
												   $(this).next().animate({'height':'toggle'},'normal','easeOutQuad');
												   });
					  $('.offerDiv > .offerOpt:last').css('borderBottom','3px solid #4aa9e7');*/
					$('.quickReserve h3').toggle(
												function(){
													$('.QRform').animate({height:'+=160px'},500, 'easeOutBounce');
													},
													function(){
													$('.QRform').animate({height:'-=160px'},100, 'easeInQuad');
													}
												);
					  });

