// JavaScript Document
$(document).ready(function(){
   	$('.product').mouseover(function() {
  		$(this).css('background-color', '#F0F1F6');
   	});
	$('.product').mouseout(function() {
  		$(this).css('background-color', '#FFF');
   	});
});
