// Function for randomly switching backgrounds

$(document).ready(function (){

//alert(Math.ceil(Math.random()*4))

var colors = ['grey','petrol','red','orange'],
    num = Math.floor(Math.random()*4);

$('body').addClass(colors[num]);

});	
