

$(document).ready(function() {		
	
	
	var elements = $('#rotator ul li');
$ (elements.get (
  Math.round (elements.length*Math.random ()-0.5)
)).addClass ('show');

var elements = $('#rotatorTwo ul li');
$ (elements.get (
  Math.round (elements.length*Math.random ()-0.5)
)).addClass ('show');

var elements = $('#rotatorThree ul li');
$ (elements.get (
  Math.round (elements.length*Math.random ()-0.5)
)).addClass ('show');

var elements = $('#rotatorFour ul li');
$ (elements.get (
  Math.round (elements.length*Math.random ()-0.5)
)).addClass ('show');

	$('#rotator img').click(function(){
  	window.location = '/SelectaSupplier/SupplierComparisonChart.aspx';
	}); 
	$('#rotatorTwo img').click(function(){
  	window.location = '/SelectaSupplier/SupplierComparisonChart.aspx';
	}); 
	$('#rotatorThree img').click(function(){
  	window.location = '/SelectaSupplier/SupplierComparisonChart.aspx';
	}); 
	$('#rotatorFour img').click(function(){
  	window.location = '/SelectaSupplier/SupplierComparisonChart.aspx';
	}); 

});
