/*

 * Img switch script

 * Dry Rain Media | Michael Blackwell

 */

 

 //enter image id here

 img_id='swapme';

 

 prefix= 'images/';

 attr = 'background';

 

 //enter paths to images here in order you want them to appear

images = [

	'image1.png',

	'image2.png',

	'image3.png',

	'image4.png',

	'image5.png',

	'image6.png',

	'image7.png'

];



$(document).ready(function(){

	d = new Date();

	min = d.getMinutes();

	s = min/10;

	for(var i=1; i < 7; i++){

		if(s < i){

			$('#'+img_id).attr(attr,prefix+images[i])

			break;

		}

	}

})




