$(document).ready(function(){
	// Fancy tool-tip
	$('.toolTip').tooltip({
		delay: 0,
		track: true,
		showURL: false
	});
	
	// Generate a random number between and including 1 and 6
	var rand_no = Math.floor((7-1)*Math.random()) + 1;

	// Append the randomly generated number to the string 'photoSet' and call the entire thing 'className'
	var className = 'homePhoto' + rand_no;

	// Add this new className to the div that has the ID homePhotoWrap
	$("#homePhotoWrap").addClass(className);
});