$(document).ready(function(){
    $('.index-pic').css('background','#B4B4B4');
    $('.index-pic-newslist li:first a').addClass('active');
    var ipid = parseInt($('.index-pic-newslist li:first a').attr('rel').replace(/ip/ig, ""));
    var link_txt = $('.index-pic-newslist li:first a').html();
    var link_href = $('.index-pic-newslist li:first a').attr('href');
    $('#ipb' + ipid).show();
    $('.index-pic-record-big').html(link_txt);
    $('.index-pic-record-big').slideDown(500);
    $('a.index-pic-moar').attr('href', link_href);
    $('.index-pic-newslist li a').click(function(){
        if(!$(this).hasClass('active')){
            $('.index-pic-newslist li a').removeClass('active');
            $(this).addClass('active');
            $('.index-pic-record-big').hide();
            $('.index-pic-bg').hide();
            var ipid = parseInt($(this).attr('rel').replace(/ip/ig, ""));
            var link_txt = $(this).html();
            var link_href = $(this).attr('href');
            $('#ipb' + ipid).fadeIn(500);
            $('.index-pic-record-big').html(link_txt);
            $('.index-pic-record-big').slideDown(500);
            $('a.index-pic-moar').attr('href', link_href);
        }
        return false;
    })
})
