var duration = 300
var alpha = 0.8
var alpha60 = 0.6

jQuery(function($){
  $('.itemThumbs').find('li').each(function(i){
    $(this)	.mouseover(function() {
	  $(this).stop().fadeTo(duration, alpha,function () {
	    $(this).fadeTo(duration,1);
	  })
	})
  })
  
  $('.thumbH').mouseenter(function(){
    $(this).find('img').stop().fadeTo(duration, alpha,function () {
	  $(this).fadeTo(duration,1);
	})
  })
  
  $('.thumbV').mouseenter(function(){
	$(this).find('img').stop().fadeTo(duration, alpha,function () {
	  $(this).fadeTo(duration,1);
	})
  })
  
  $('.products_list').find('li').mouseenter(function(){
	$(this).find('img').stop().fadeTo(duration, alpha,function () {
	  $(this).fadeTo(duration,1);
	})
  })
  
  $('#linkwrapper').find('li').mouseenter(function () {
    $(this).stop().fadeTo(duration, alpha60,function () {
	  $(this).fadeTo(duration,1);
	})
  })
  
})

