/**
 * @author mryan
 */

var items;

$(document).ready(function() {
	
	items = $("#contentleft .products .item");
	
	for(i = 0; items[i]; i++)
	{
				
		items[i].onmouseover = function()
		{			
			this.style.backgroundImage = "url(/resources/default/images/item_bkg_hover.png)";
		}
		
		items[i].onmouseout = function()
		{			
			this.style.backgroundImage = "url(/resources/default/images/item_bkg.png)";
		}
		
	}
	
});
