$(function () {

  //$('.my-dropdown-category').sSelect();
  //$('.my-dropdown-product').sSelect();

/**********************
OL Styling             */  

  $('.post ol li').css('font-weight', 'bold').wrapInner('<span></span>').children('span').css('font-weight', 'normal');
  $('#ftr .ewm .hover').css('display', 'none');
  $('#ftr .ewm').hover(
    function() {
      $(this).children('span.hover').css('display', 'inline');
    },
    function() {
      $(this).children('span.hover').css('display', 'none');
    });
    
/**********************
Drop down menu for IE6 */

  $('ul#nav li').hover(
  		function() { $('ul', this).addClass('hover'); },
  		function() { $('ul', this).removeClass('hover'); }
  );
  
  var lastNum = $('#nav > li').length;
  var scndLastNum = lastNum - 1; 
  
  
  $('#nav li li:last-child a').addClass('last');
  $('#nav > li:nth-child('+lastNum+'), #nav > li:nth-child('+scndLastNum+')').addClass('right');
  
  $('#photo').cycle({delay: 1000, speed: 650});
  $('.box2 .img').cycle({
    prev:   '#photoBack', 
    next:   '#photoForward', 
    timeout: 0  
  });

/**********************
Category Jump for Dropdown in Product Search */

  $('.my-dropdown-category').change(
    function(){
      var str = "";
      str = $(".my-dropdown-category option:selected").attr('value');
      //alert('/products-labels/' + str + '/');
      window.location = 'http://mon.elementwebmedia.com/products-labels/' + str + '/';
    }
  );

/**********************
The Ajax Connection to get Product Info */

	$('.my-dropdown-product').change(function(){
    elementid = $(".my-dropdown-product option:selected").attr('value');
    if(elementid != 0){
  		$("#productSearch .textArea p").empty();
  		$("#productSearch .textArea p").append("<span class=\"imgcenter\"><img src=\"http://www.montereyagorganics.com/wp-content/plugins/ewm-product-manager/includes/images/loading.gif\" style=\"padding-top:7px;\" alt=\"Loading\" /></span>");

      $.get("http://www.montereyagorganics.com",
  		{ewm_pm_action: "ajaxgrab", ewm_pm_ajaxid: elementid},
  		function(data) {
  			$("#productSearch .textArea").empty();
  			$("#productSearch .textArea").html(data);
  		});
		}
	});

/*********************
Featured Products */

  $('#fplist').cycle({ 
    fx:     'fade',
    speed:  'fast', 
    timeout: 0, 
    next:   '#nextButton', 
    prev:   '#prevButton' 
  });

/*********************
Fruit Cycle */

$('#introText .photo').cycle({ 
    fx:    'fade', 
    delay:  2000,
    speed:  1500 
 });

/*********************
Live Search */

  $('input[name="s"]').search('#livesearch li', function(on) {
    
    
      on.all(function(results) {
        var size = results ? results.size() : 0;
      });
  
      on.reset(function() {
        $('#livesearch').hide();
        $('#livesearch li').hide();
      });
  
      on.empty(function() {
        $('#livesearch').hide();
        $('#livesearch li').hide();
      });
  
      on.results(function(results) {
        var searchsize = $('input[name="s"]').val().length;
        if(searchsize > 3){
          $('#livesearch').show();
          $('#livesearch li').hide();
          results.show();
        }
      });
      
  });


  $("#livesearch").appendTo("#topSearch");
  $("#ftr #livesearch").remove();

});