function checkPicture(){

    var mainImg =  document.getElementById('mainImage');

    if(mainImg){
        var now = new Date();
        if (now.getHours() < 7 || now.getHours() > 15) {
            mainImg.src = '/uploads/images/banner_GenericSummerNight.jpg'
        } else {    
            mainImg.src = '/uploads/images/banner_GenericSummerDay.jpg'
        }
    }
}


$(function () {
	checkPicture();
	window.setInterval(checkPicture, 60000);
	$('font.head6').closest('a').css('text-decoration','none');
	$('font.head6').closest('a').hover(function(){
		$(this).css('text-decoration','underline');
	}, function(){
		$(this).css('text-decoration','none');
	});
	
	$('table td').each(function(){
	});
});
