	
 $(document).ready(function() {
   
   var panocount = 31;
   var imgnum = Math.floor(Math.random()* panocount);
   var url = "http://ipanoramic.com.au/shop/img/panos/pano" + imgnum + ".jpg"
   $('#header').css('background-image', 'url(' + url +')');
   
   $('#testimonials-wrapper').cycle(
   	{ 
    	delay:  0, 
		speed:  3000,
		timeout: 30000,
		random: 1
	}
   );
   
 });
