$(document).ready(function()
{
  $('#slideshow').cycle({
    fx: 'fade',
    prev: '#slideshow_prev',
    next: '#slideshow_next',
    pager: '#slideshow_pager',
    activePagerClass: 'active'
  });

  $('a.gallery_img').colorbox({
    titleShow: false,
    maxWidth: '96%',
    maxHeight: '96%',
    scrolling: false,
    slideshow: true,
    slideshowAuto: false,
    slideshowStart: 'Spustiť prezentáciu',
    slideshowStop: 'Zastaviť prezentáciu'
  });

  $('#floor_select_img').maphilight({
    stroke: false,
    fillColor: '1090FE',
    fillOpacity: 0.7
  });

  $('a.floor').hover(function()
  {
    var e = $('#' + $(this).attr('rel'));
    if(e.length==1) e.mouseover();
  },
  function()
  {
    var e = $('#' + $(this).attr('rel'));
    if(e.length==1) e.mouseout();
  });

  $('#apartment_select_img').maphilight({
    stroke: false,
    fillColor: '1090FE',
    fillOpacity: 0.7
  });

  $('area.apartment_info').hover(function()
  {
    var trigger = $(this);
    $('#info_box').html('<strong>' + trigger.attr('title') + '</strong>' + trigger.attr('alt'));
  },
  function()
  {
    $('#info_box').html('');
  });
});

