/**
 * @author DemonCcC
 */

$(function(){
	$('tr.items').hover(function(){
  			$('td', this).css('background', '#A30C07');
	},function(){
			$('td', this).css('background', '');
	});
	$('tr.productos').css('cursor', 'default');
});