$(document).ready(function(){
  
  $('form[name=search_form] input[type=text]').each(function(){
    $(this).val('');
    $(this).Watermark( $(this).attr('title') ); // Показываем хинт для инпут-поля поиска
  });
  
  $(window).load(function(){
    if($('#index_carousel .pics *').length){
        $('#index_carousel .pics').cycle({
          pager:    '#index_car_nav',
          fx:       'fade',
          speed:    700, 
          timeout:  3000,
          pagerAnchorBuilder: function(){
            return '<a href="#"></a>';
          }
        });
      }else if( $('#index_carousel .pics img').length < 1 ){
        $('#index_carousel').remove();
      }
  });
  
});
