$(document).ready(function(){
	var thetime= new Date();
	if(thetime.getHours()<7 || thetime.getHours()>19){
		$('body').addClass('night');		
		$('#home_img').attr('src','http://www.workscomputing.com/images/home-night.jpg');
		$('#logo-splash img').attr('src','images/logo-home-night.jpg');
		$('#title img').attr('src','images/title-welcome-night.gif');
		$('#contentDay').attr('id','contentNight');
		$('#footerDay').attr('id','footerNight');		
		$('object').attr('data','flash/splash2.swf');
	}
	$('.ads2').cycle({
		fx: 'fade',
		speed: 1500,
		timeout: 6000
	});
});