jQuery(function($){

  $('a[rel*=external]').attr('target','_blank');

  $('#nav a').hover(function(){
    $(this).addClass('active').siblings('div').stop().animate({height:116},200);
  },function(){
    $(this).removeClass('active').siblings('div').stop().animate({height:0},200);
  });

  if ($('#highlight-container ul').length) {
    $('#highlight-container ul').cycle({fx:'fade'});
  }

  $('#donna-bagno #nav a.donna-bagno').unbind('mouseenter mouseleave');
  $('#products #nav a.produtos').unbind('mouseenter mouseleave');

  if ($('#gallery .img-container').length) {
    $('#gallery .img-container').cycle({timeout:0,fx:'fade',sync:false, nowrap:true, next:$('#gallery .controls .next'), prev:$('#gallery .controls .previous')});

    $('#gallery .controls .right').click(function(){
      var link = $('#gallery img:visible').attr('src');
      link = link.replace("thumb/small/","");
      $.fancybox({href:link,opacity:true});
    });
  }

  if ($('#category-carousel li').length) {
    $('#category-carousel').jcarousel();
    $('#category-carousel li').click(loadProducts);
  }

  if ($('#product-carousel li').length) {
    $('#product-carousel').jcarousel();
  }

  $('#technical-info').one('click',toggleTechImage);

  if ($('#contact-container').length) {
    $.validity.setup({ outputMode:"modal"});
    $.extend($.validity.messages, {
      require:"#{field} é obrigatório.",
      email:"#{field} inválido."
    });
    $('form').validity(function(){
      $('#ContactName').require();
      $('#ContactEmail').require().match('email');
      $('#ContactMessage').require();
    });
  }

  if ($('#store-container').length) {
    $('#StoreState').change(function(){
      if ($(this).val() != 0) {
        $('#StoreCity')[0].options.length = 1;
        $('#StoreCity')[0].options[0].text = 'Carregando...';
        $('#StoreCity').load(rootUrl+'stores/loadCities',{state:$(this).val()});
      }
    });
    $('#StoreCity').change(function(){
      if ($(this).val() != 0) {
        $('#store-list').block();
        $.post(rootUrl+'stores/loadStores',{city:$(this).val()},function(response){
          $('#store-list').html(response).unblock();
        });
      }
    });
  }

});

jQuery(window).load(function(){
  $('.text-container').jScrollPane({scrollbarMargin:50, showArrows:true, scrollbarWidth:11});
});

function loadProducts() {
  $('#category-carousel li').unbind('click');
  $('#category-carousel li.active').removeClass('active');
  $(this).addClass('active');
  $('#category-carousel li').click(loadProducts);
  var categoryId = $(this).attr('id').split('-')[1];

  $('#category-description').block({message:'Carregando...'});
  $.post(rootUrl+'products/loadInfo',{id:categoryId},function(response) {
    $('#category-description').html(response).unblock();
  });

  $('#product-list').block({message:'Carregando...'});
  $.post(rootUrl+'products/loadProducts',{id:categoryId},function(response){
    $('#product-list').html(response);
    if ($('#product-carousel li').length) {
      $('#product-carousel').jcarousel();
    }
    $('#product-list').unblock();
  });
}

function toggleTechImage() {
  $('#product-container .image img:visible').fadeOut('slow',function(){    
    $('#product-container .image img.hide').fadeIn('slow',function(){
      $(this).removeClass('hide');
    });
    $(this).addClass('hide');
  });
  $('#technical-info').one('click',toggleTechImage);
}
