$(document).ready(function () {
    setInterval('blink()', 5000);

    $('a[href=#top]').click(function(){
	    $('html, body').animate({scrollTop:0}, 'slow');
	    return false;
    });    
});
function blink() {
    setTimeout("$('#header-left img').attr('src', 'images/trh-logo-flicker.png')", 100);
    setTimeout("$('#header-left img').attr('src', 'images/trh-logo.png')", 200);
    setTimeout("$('#header-left img').attr('src', 'images/trh-logo-flicker.png')", 300);
    setTimeout("$('#header-left img').attr('src', 'images/trh-logo.png')", 400);
}
