$(window).load(function () {
	$('a > img,.index-block').hover(function() {
		$(this).fadeTo(200,0.6);
	}, function() {
		$(this).fadeTo(100,1);
	});

	$('.hover').hover(function() {
		var src =$(this)
		src.attr("src",src.attr("src").replace(/^(.+)(\.[a-z]+)$/, "$1_o$2"));
	}, function () {
		var src =$(this)
		src.attr("src",src.attr("src").replace(/^(.+)_o(\.[a-z]+)$/, "$1$2"));
	});
});

