// $.fn.cycle.debug = true
$(function()  {
  // priznak zapnuteho javascriptu
  $('body').removeClass('js_off').addClass('js_on');
  // otevirani odkazu do noveho okna
  $('a.nw').attr('target','_blank');
  // prolinani akci centra
  $('#cycle').cycle( {
    fx: 'fade',
    slideExpr: '.cycle',
    timeout: 5000,
    speed: 500
  });
  $('#fashion-banner').cycle( {
    fx: 'fade',
    slideExpr: '.cycle',
    activePagerClass: 'active',
    timeout: 5000,
    speed: 500
  });
  // fotogalerie na strance najmece
  $('#mini-gallery p').cycle( {
    fx: 'fade',
    slideExpr: '.cycle',
    next: '#mini-gallery .switch',
    activePagerClass: 'active',
    timeout: 0,
    speed: 600,
    cleartypeNoBg: true 
  });
  // fotogalerie najemcu
  $('#mini-gallery a.cycle').colorbox({transition:'fade', speed:500, current:'Obrázek {current} z {total}'});
  // fotogalerie akce (proklik na plakat)
  $('#gallery a.cycle').colorbox({transition:'fade', speed:500, current:'Obrázek {current} z {total}'});
  // fotogalerie (obycejna v obsahu)
  $('a.zoom span').hover(function () {$(this).css('z-index','10');$(this).animate({width: '200px',height: '134px',left: '-37px',top: '-24px'}, 100 );});
  $('a.zoom span').mouseout(function () {$(this).animate({width: '126px',height: '84px',left: '3px',top: '3px'}, 100 );$(this).css('z-index','1');});
  $('a.colorbox').colorbox({transition:'fade', speed:500, current:'Obrázek {current} z {total}'});
  var $modinspir = $('#modni-inspirace');
  if( $modinspir && !$modinspir.get(0) && $modinspir.html() ) 
  { $modinspir.html( $modinspir.html().replace(/☺/g, '<img alt="☺" src="/static/css/basic/smiley.png" />') );
  }    
});
