jQuery(document).ready(function() {

  $(".products").delegate(".product", "mouseover mouseout", function(e) {

    if (e.type == 'mouseover') {
      $(".products .product").not(this).dequeue().animate({opacity: "0.5"}, 200);
  	} else {
     	$(".products .product").not(this).dequeue().animate({opacity: "1"}, 200);
  	}

  });
  
// ----- Right column -----
/*
  if ($('#menu').length) {

  	var theLoc = $('#menu').position().top;
  	$('#menu').wrapInner('<div id="fixed">');

  	$(window).scroll(function() {
  		if (theLoc >= $(window).scrollTop()) {
  			if ($('#fixed').hasClass('fixed')) {
  				$('#fixed').removeClass('fixed');
  			}
  		} else {
  			if (!$('#fixed').hasClass('fixed')) {
  				$('#fixed').addClass('fixed');
  			}
  		}
  	});
	
	}
	*/


});
