$(document).ready(function() {

// LIGHTBOX EFFECT
	// To use the lightbox function, simplay add the class 'lightbox' to the link to the image.
	$('a.lightbox').lightBox();
	
// Random Left Background Image
		var randomBackground = ['lady', 'hands', 'flex', 'hat'];
	  	var rndNum = Math.floor(Math.random() * randomBackground.length);
	  	$("#photo").addClass(randomBackground[rndNum]);

// Random Testimonials
		$('#quote').load('/quotes.html',function(){ 
		      var $quotes = $(this).find('p'); 
		      var n = $quotes.length; 
		      var random = Math.floor( Math.random()*n ); 
		      $quotes.hide().eq(random).fadeIn(); 
		});
// Virtual Tour pop up


});

function tourPop(url) {
	tourWindow = window.open (url,'virtualtour','height=450,width=550,scrollbars=0,resizeable=0,toolbar=0,location=0');
	};
