$(document).ready(function() {
   $('.btnPanels').each(function(){
        $('h3', this).css('background','url('+$('img', this).attr('src')+') 0 0 no-repeat');
    });
    $('#NewsList li').each(function(){
        $(this).click(function(){
            location.href = $('h3 a', this).attr('href');
            return false;
        });
    });
    $('.rollover').rollover();
    $('.clickPanels li').clickpanel();
});