//  this.randomtip = function(){
//
//	var pause = 6000; // define the pause for each tip (in milliseconds) 
//	var length = jQuery(".testimonial ul li").length; 
//	var temp = -1;		
//
//	this.getRan = function(){
//		// get the random number
//		var ran = Math.floor(Math.random()*length) + 1;
//		return ran;
//	};
//	this.show = function(){
//		var ran = getRan();
//		// to avoid repeating
//		while (ran == temp){
//			ran = getRan();
//		}; 
//		temp = ran;
//		jQuery(".testimonial ul li").hide();	
//		jQuery(".testimonial ul li:nth-child(" + ran + ")").fadeIn("fast");		
//	};
//	
//	show(); setInterval(show,pause);
//	
//};
//
//jQuery(document).ready(function(){	
//	randomtip();
//});
//
// 


  jQuery(function () {
     if (typeof Vx === 'undefined') {
   jQuery('html').addClass('js');
     }
});
  jQuery(document).ready(function() {
var divs = jQuery("div.vxImage").get().sort(function(){
  return Math.round(Math.random())-0.5; //random so we get the right +/- combo
}).slice(0,1)
jQuery(divs).show();
	});

