$(function(){
    var height = $('#rightBlock').height() > $('#leftImg').height() ? $('#rightBlock').height() : $('#leftImg').height();
    if(height > 220) $('.centerBlock').css('height',height);
    
    $('.iconLinks').bind('mouseenter', function() {
        var src = $(this).children('img').attr('src').replace(/([0-9]+)/,"$1a");
        $(this).children('img').attr('src',src);
    });
    $('.iconLinks').bind('mouseleave', function() {
        var src = $(this).children('img').attr('src').replace('a','');
        $(this).children('img').attr('src',src);
    });
});

function nextRow(cnt) {
    var left = '-'+cnt*507+'px';
    //alert($('#imgsBlock').css('top'));
    $('#imgsBlock').fadeOut('slow',function(){$(this).css('top',$(this).css('top').replace('px','')*1-507+'px'); if(left == $('#imgsBlock').css('top')) $('#nextRow').hide(); $(this).fadeIn('slow');});
    $('#prevRow').show();
    
    return false;
}

function prevRow() {
    $('#imgsBlock').fadeOut('slow',function(){$(this).css('top',$(this).css('top').replace('px','')*1+507+'px'); if($('#imgsBlock').css('top') == '0px') $('#prevRow').hide(); $(this).fadeIn('slow');});
    $('#nextRow').show();

    return false;
}
