﻿

$(document).ready(function(){
 
	bgImageTotal=5; 
	randomNumber = Math.round(Math.random()*(bgImageTotal-1))+1; 
	imgPath=('/wp-content/themes/protech/images/header-bg/'+randomNumber+'.jpg'); 
	$('#header').css('background-image', ('url("'+imgPath+'")'));
 
});


