// JavaScript Document

$(document).ready( function() {
	$("div.product,div.quoteproduct").hover(function() {$(this).addClass("hover");}, function() {$(this).removeClass("hover");});
});