function changeBlock(){
		var container = $(".rotation");
var NumOfElements = $(container).children("div").size();
//$(container).children("div").hide();
//var Element = Math.floor(Math.random()*(NumOfElements+0.3));
//$(container).children("div").eq(Element).show();
$(container).children("div").eq(Math.floor(Math.random()*($(container).children("div").size()+0.3))).appendTo(container);
$(container).children("div").eq(Math.floor(Math.random()*($(container).children("div").size()+0.3))).appendTo(container);
}

$(window).load(function(){		
	changeBlock();
});
