jQuery(function() {
	// =======================================
	// Переключалка картинок
	
	// Preload images
	jQuery(".person-in > .switch").find("a").each(function(){
			preload(this.href);
		});
	
	jQuery(".person-in > .switch").find("a").click(function(){			
			jQuery(".person-in > .person-image > img").attr("src", this.href);
			jQuery(".person-in > .switch").find("a").removeAttr("class");
			jQuery(this).attr("class", "active");
			return false;
		});
	
	if( firstImg = jQuery(".person-in > .switch").find("a")[0] )
	{
		jQuery(firstImg).trigger('click');
	}
});

