$(document).ready(function() {
	$("#allProductsHolder .product_title").parent().hover(function() {
		$(this).children('.product_title').css('visibility', 'visible');
	}, function() {
		$(this).children('.product_title').css('visibility', 'hidden');
	});
	
});


$(function() {
    $('.rollover').hover(function() {
        var currentImg = $(this).attr('src');
        $(this).attr('src', $(this).attr('hover'));
        $(this).attr('hover', currentImg);
    }, function() {
        var currentImg = $(this).attr('src');
        $(this).attr('src', $(this).attr('hover'));
        $(this).attr('hover', currentImg);
    });
});
