/* Author: 

*/

 /* function initialize() {
    var latlng = new google.maps.LatLng(51.4926406357673,-0.14077541993339);
    var myOptions = {
      zoom: 14,
      center: latlng,
      mapTypeId: google.maps.MapTypeId.ROADMAP
    };
    var map = new google.maps.Map(document.getElementById("google-map"),
        myOptions);

	var image = new google.maps.MarkerImage('img/map-icon.png',
      // This marker is 20 pixels wide by 32 pixels tall.
      new google.maps.Size(40, 57),
      // The origin for this image is 0,0.
      new google.maps.Point(0,0),
      // The anchor for this image is the base of the flagpole at 0,32.
      new google.maps.Point(20, 56));
      
	var marker = new google.maps.Marker({
        position: latlng,
        map: map,
        icon: image
    });

    $('#full-screen-image').css('position','absolute');
  }
  
  

  jQuery(function($){
  	if ($('#contact').size()>0) {
  		initialize();
  	};
  })
  */
  
  	$('.readmore').click(function(){
		if ($(this).attr('rel') == 'spa') {
			$(this).parents('.column-info-item').children('.column-info-desc').stop(true,true).animate({'height':'185px'}, 500);
			$(this).parents('.column-info-item').find('.closemore').delay(500).fadeIn(500);
		} else {
			$(this).parents('.column-info-item').children('.column-info-desc').stop(true,true).animate({'height':'125px'}, 500);
			$(this).parents('.column-info-item').find('.closemore').delay(500).fadeIn(500);	
		}
	});
	
	$('.closemore').click(function(){
		$(this).fadeOut(500);
		$(this).parents('.column-info-desc').stop(true,true).delay(500).animate({'height':'1px'}, 500);
	});
	
	$("#arrival").datepicker({
		showOn: "button",
		buttonImage: "img/calendar.gif",
		buttonImageOnly: true,
    dateFormat: 'dd/mm/yy'
	});
