/**
 * @author conor
 */


window.addEvent('domready',function(){
    // variables and settings
	var tables = new Array();
    tables[0] = document.id('productTable');
    tables[1] = document.id('productTable-best');  // only homepage
    tables[2] = document.id('productTable-new'); // only homepage
    tables[3] = document.id('productTable-sale'); // only homepage
    //console.log(tables);
    tables.each(function(table) {
	    if (table) {
	    table.getElements('td').each(function(el) {
	        var parent = el.getParent('tr');
	        var siblings = parent.getElements('td');
	        var index = siblings.indexOf(el) + 1;
	        var childSelector = 'tr td:nth-child(' + index + ')';
	        el.addEvents({
	            mouseenter: function() {
	                el.setStyle('background','#FFEFF6');
	            },
	            mouseleave: function() {
	                el.setStyle('background','white');
	            }
	        });
	    });
	    }
    });
});
