// on dom ready
$(function()
{
	// detect IE and IE6
	var ie = !$.support.opacity, ie6 = ie && !window.XMLHttpRequest;
	
	// hover fix for ie6
	if (ie6) {
		$('#boxes div.box').each(function() {
			$(this).hover(function() {
				this.oldbg = $(this).css('backgroundImage');
				$(this).css('backgroundImage',this.oldbg.replace('.gif','_roll.gif'));
			}, function() {
				$(this).css('backgroundImage',this.oldbg);
			});
		});
	};
});
