$(document).ready(function() {
	/* Zoom */
	$('body').ImageZoom();
	/* Images */
	var logo = $('.brands .logo img');
	$.each(logo, function(i) {
		$(this).attr('src', $(this).attr('src') + '?' + Math.random());
		$(this).load(function() {
			height = $(this).height();
			if ( height <= 70 ) {
				j = (70 - $(this).height())/2;
				if ( j > 0 ) {
					$(this).css('margin', j + 2 + 'px 0');
				}
			}
		});
	});
});
