// JavaScript Document

$('.categories li.classic').hover(function() {
  $('.categories li.classic img').stop().animate({"opacity": "0"}, "slow");
  },
	function() {
  $('.categories li.classic img').stop().animate({"opacity": "1"}, "slow");
});

$('.categories li.modern').hover(function() {
  $('.categories li.modern img').stop().animate({"opacity": "0"}, "slow");
  },
	function() {
  $('.categories li.modern img').stop().animate({"opacity": "1"}, "slow");
});

$('.categories li.vintage').hover(function() {
  $('.categories li.vintage img').stop().animate({"opacity": "0"}, "slow");
  },
	function() {
  $('.categories li.vintage img').stop().animate({"opacity": "1"}, "slow");
});

$('.categories li.sanfran').hover(function() {
  $('.categories li.sanfran img').stop().animate({"opacity": "0"}, "slow");
  },
	function() {
  $('.categories li.sanfran img').stop().animate({"opacity": "1"}, "slow");
});

$('.categories li.broadlooms').hover(function() {
  $('.categories li.broadlooms img').stop().animate({"opacity": "0"}, "slow");
  },
	function() {
  $('.categories li.broadlooms img').stop().animate({"opacity": "1"}, "slow");
});
