/**
 * @author shevchenquot
 */
	
$(document).ready(function() {
	var cols_img = new Array();
	cols_img[0] = new Array(['achat-vente-terrain-charente0.jpg', 'achat-vente-terrain-charente1.jpg'], ['achat-vente-maison-charente0.jpg', 'achat-vente-maison-charente1.jpg'], ['investissement-immobilier-charente0.jpg', 'investissement-immobilier-charente1.jpg'], ['immobilier-agricole-forestier-france-ouest0.jpg', 'immobilier-agricole-forestier-france-ouest1.jpg'], ['locaux-commerce-entreprise-charente0.jpg', 'locaux-commerce-entreprise-charente1.jpg']);
	cols_img[1] = new Array(['land-terrain-charente-for-sale0.jpg', 'land-terrain-charente-for-sale1.jpg'], ['house-for-sale-charente0.jpg', 'house-for-sale-charente1.jpg'], ['real-estate-investment-in-charente0.jpg', 'real-estate-investment-in-charente1.jpg'], ['farm-forestry-plantation-estate-france0.jpg', 'farm-forestry-plantation-estate-france1.jpg'], ['business-office-building-charente0.jpg', 'business-office-building-charente1.jpg']);
	var version = (_version == 'fr') ? 0 : 1;

	$('.home_col_top').each(function(i) {
		$(this).find('img').mouseover(function() {
			$(this).attr('src', 'img/' + cols_img[version][i][1]);
		})
		.mouseout(function() {
			$(this).attr('src', 'img/' + cols_img[version][i][0]);
		});
	});
	
	myLoveAdverts = new LoveAdverts();
	myLoveAdverts.init();
	myLoveAdverts.start();
});