$(function() {
	$('.store').hover(function(e){
		$(this).css('background-color', '#EFEFEF');
	}, function(e) {
		$(this).css('background-color', '#FFFFFF');
	});
	$('.store:even').addClass('clear');
});


