﻿$(document).ready(function() {
   $("#products-list").scrollable().navigator({history: true});
   // Focus Input
   if ($('.focus-input').val() == "email") {
      $('.focus-input').css("color","#aaa");
   }
   $('.focus-input').focusin(function(){
      var text = $(this).attr("rel");
      if ($(this).val() == text) {
         $(this).val("");
         $(this).css("color","#333");
      }
   });
   $('.focus-input').focusout(function(){
      var text = $(this).attr("rel");
      if ($(this).val() == "") {
         $(this).val(text);
         $(this).css("color","#aaa");
      }
   });
   // Message Box
   if ( $('div.messages-box').length ){
      $.colorbox({
            width:"50%",
            html:$('div.messages-box').html()
      });
   }
   
   /*
   $('div.catalog-list a').hover(
      function(){
         $(this).stop().animate({
            paddingLeft:"10px"
         },150);
      },
      function(){
         $(this).stop().animate({
            paddingLeft:"0"
         },150);
      }
   );
   */
});
