$(window).ready(function(){
	var blocs = $('div.city div.wrapper div.square');
	var companies = $('div.company div.block div.left img');
	
	$.each(blocs, function(index, value){
		blocs.eq(index).hover(function(){
			$(this).find('img').animate({height: 75, marginTop : '15', marginLeft: '15'});
			$(this).find('span').animate({width : 158, left: '15'});
		}, function(){
			$(this).find('img').animate({height: 90, marginTop : '0', marginLeft: '0'});
			$(this).find('span').animate({width : 192, left: '0'});
		});
	});
	
	$.each(companies, function(index, value){
		companies.eq(index).hover(function(){
			$(this).animate({height : 175, marginLeft: 10, marginTop : 10}, 200);
		}, function(){
			$(this).animate({height : 199, marginLeft: 0, marginTop : 0}, 200);
		});
	});
});
