/**
 * @author PHPmotion
 */


//______add hosts html into an array________
$(document).ready(function(){
var host_content_array = new Array();
host_content_array[1] = $("#Rotate1").html();
host_content_array[2] = $("#Rotate2").html();
host_content_array[3] = $("#Rotate3").html();
host_content_array[4] = $("#Rotate4").html(); 
//host_content_array[5] = $("#Rotate5").html(); 

var x = 3; //number of hosts in array - 1

//___generate random number______
function randOrd() {
return (Math.round(Math.random())-0.5);
}

//_____re-order hosts array_________
host_content_array.sort( randOrd );

//____Empty Div______
$("#Rotated-Host-Container").empty();
 

//___Add new info to parent div_____
for (counter =0; counter <= x; counter++) {  
$("#Rotated-Host-Container").append(host_content_array[counter]);
}
})
