$(document).ready( function () {
			
	$('.footer_block2 img').hover( function () {
		$(this).attr('src',$(this).attr('src').replace('.png', '_h.png'));
	}, function () {
		$(this).attr('src',$(this).attr('src').replace('_h.png', '.png'));
	});			

	$('.center_banners img').hover( function () {
		if(!$(this).hasClass('active')) $(this).attr('src',$(this).attr('src').replace('.jpg', '-1.jpg'));
	}, function () {
		if(!$(this).hasClass('active')) $(this).attr('src',$(this).attr('src').replace('-1.jpg', '.jpg'));
	});			

});

function go_match () {
	$('html, body').animate({scrollTop:(findPos(document.getElementById('sel_match_cnt'))[1]-20)+'px'}, 1000);
	return false;
}

function findPos(obj) {  
     var curleft = curtop = 0;  
     if (obj.offsetParent) {  
         curleft = obj.offsetLeft  
         curtop = obj.offsetTop  
         while (obj = obj.offsetParent) {  
             curleft += obj.offsetLeft  
             curtop += obj.offsetTop  
         }  
     }  
     return [curleft,curtop];  
} 

