jQuery(document).ready(function(){

	/*
	jQuery('.newsBlock .news a').click(function(){
		return false;
	})
	*/

	var _timer = null;
	jQuery('.newsBlock .news').hover(function(){
		
		var _this = this;
		
		_timer = setTimeout(function () {
		
			if(!jQuery(_this).is('.active')){
				
				jQuery(_this).parent('.newsBlock').find('.news.active .info').animate({"margin-left": 64});
				jQuery(_this).parent('.newsBlock').find('.news.active img').animate({"width": 54});
				jQuery(_this).parent('.newsBlock').find('.news.active').removeClass('active');
				
				jQuery(_this).find('.info').animate({"margin-left": 248});
				jQuery(_this).find('img').animate({"width": 238});
				jQuery(_this).find('.info').animate({"margin-left": 248});
				
				jQuery(_this).addClass('active');
			}
				
		}, 300);
		
		
	}, function () {
		
		clearTimeout(_timer);
		
	});
});
