$(document).ready(function(){
	$('.mosaic_item').css({cursor: 'pointer'}).click(function(event){
		event.stopPropagation();
		location.href = $(this).find('a').attr('href');
		return false;
	});

	$('#recommend').click(function(){
		location.href = '#' ;
	});

	$('#cars_present').click(function(){
		window.location.href = '/ru/cars/';
	});

	$('input[type=text]').attr('autocomplete', 'off');

	$('.dyna_flash').each(function(){
		var html = $(this).html();
		$(this).html(html).show();
	})
});
