/*
$(document).ready(function(){
	$('#rzhomebrands .brand').each(function(){
			$(this).find('.brand_hover').css('left', parseInt($(this).position().left) - 125);
	});

	$('#rzhomebrands .brand').hoverIntent(
		function(){
			$(this).find('.logo').css('visibility', 'hidden');
			$(this).find('.brand_hover').fadeTo('fast', 1);
		},
		function(){
			$(this).find('.logo').css('visibility', 'visible');
			$(this).find('.brand_hover').fadeTo('fast', 0, function() { $(this).css('display', 'none'); });
		}
	);
});
*/

$(document).ready(function(){
	$('#rzhomebrands .brand').each(function(){
			$(this).find('.brand_hover').css('left', parseInt($(this).position().left) - 125);
	});

	$('#rzhomebrands .brand').hoverIntent(
		function(){
			$(this).find('.logo').css('visibility', 'hidden');
			$(this).find('.brand_hover').css('display', 'block');
		},
		function(){
			$(this).find('.logo').css('visibility', 'visible');
			$(this).find('.brand_hover').css('display', 'none');
		}
	);
});
