// JavaScript Document
/* ------------------------------------------------------------------------
	Developped By: Kevin fine  -> LukeTom.com
	
	Changes background image depending on the time of the day
------------------------------------------------------------------------- */
var currentTime = new Date()
var hours = currentTime.getHours()


if(hours < 6){
$(document).ready(function(){
    $('body').css("background-image", "url(images/night.jpg)");
    $('body').css("background-repeat", "no-repeat");
 });
 };
if(hours >= 6 && hours < 12 ){
$(document).ready(function(){
    $('body').css("background-image", "url(images/morning.jpg)");
    $('body').css("background-repeat", "no-repeat");
 });
 };
if(hours >= 12 && hours < 18 ){
$(document).ready(function(){
    $('body').css("background-image", "url(images/TCS-Day.jpg)");
    $('body').css("background-repeat", "no-repeat");
 });
 };
if(hours >= 18 && hours < 21 ){
$(document).ready(function(){
    $('body').css("background-image", "url(images/TCS-Sunset2.jpg)");
    $('body').css("background-repeat", "no-repeat");
 });
 };
 if(hours >= 21){
$(document).ready(function(){
    $('body').css("background-image", "url(images/night.jpg)");
    $('body').css("background-repeat", "no-repeat");
 });
 };