﻿/* Estalagem do Vale */

$(function() {
  // acções a de correr depois do site carregar
  $("#maincontent div.Paragraph:last").addClass("noBottomBorder");
  $("#maincontent div.ImageRight div.ParagraphImage img").removeAttr("align");
  
  //Acção que faz as galerias rodarem horizontalmente
  jQuery('.first-and-second-carousel').jcarousel({
    wrap: 'circular'
  });
  
  // Lightbox
  
  // Galerias do módulo Galeria de imagens
  $(".gallery ul").each(function() {
    $(this).find("li a").lightBox();
  });
  
  /************** On click change image (quartos) to bigger view inicio ***************/
  $(".Paragraph #first-carousel a").bind("click" , function() {
    $(".ParagraphImage img").attr("src", $(this).attr("href"));
    return false;
  });
  /************** End ****************/ 
  $("select[name='fromday']").children("option[value='" + new Date().getDate() + "']").attr("selected", "selected");
  $("select[name='frommonth']").children("option[value='" + (new Date().getMonth() + 1) + "']").attr("selected", "selected");
});
