$(document).ready(function() {	
	// variables for setup
	var searchImage = $("#Quote img[alt^='Q-']:first");
	var noObjects = 11; // change this to the number of quotes. Currently there is eleven
	var path  = "IM_Custom/ContentStore/Layouts/goodtobehome/Images/quotes/Q-";	
	var colors = ['magenta', 'orange', 'green', 'yellow']; // colour variations of quotes	
	// Test for number of images

	// function to create a random number between 1 and number that is entered
	function rand ( n ){
		return ( Math.floor ( Math.random ( ) * n + 1 ) );
	}
/*
	$(searchImage).each(function () {
		$(this).attr({ 
		  src: path+colors[rand(4-1)]+rand(noObjects)+'.gif',
          title: "Quote Image",
          alt: "Quote Image"
        });
	});
*/
	$(searchImage).attr({ 
		  src: path+colors[rand(4-1)]+rand(noObjects)+'.gif',
          title: "Quote Image",
          alt: "Quote Image"
     });

	

});

   
