$(document).ready(function() {
	// rollover
	$(".rollover").live('mouseover', function() {
		if(this.src.indexOf("blank") != -1)
			this.style.filter = this.style.filter.replace(/(.*)\/(.*)\.(.*)$/, "$1/$2_hover.$3");
		else
			this.src = this.src.replace(/(.*)\/(.*)\.(.*)$/, "$1/$2_hover.$3");
	});
	
	$(".rollover").live('mouseout', function() {
		if(this.src.indexOf("blank") != -1)
			this.style.filter = this.style.filter.replace("_hover", "");
		else
			this.src = this.src.replace("_hover", "");
	});
	
	// $('.disabled').each(function() {
	//        $(this).fadeTo(0, 0.5);
	//     });
	
	// $('.product').each(function() {
	//         $(this).fadeTo(0, 0.5);
	//     });
	//     
	//     $('.product').bind('mouseenter', function() {
	//         $(this).css('z-index', 99);
	//         $(this).fadeTo('fast', 1);
	//     });
	//     
	//     $('.product').bind('mouseleave', function() {
	//         $(this).fadeTo('fast', 0.5);
	//         $(this).css('z-index', 0);
	//     });
	
});
