$(window).load(function() {
	var divs = $(".homecase").get().sort(function() {
		return Math.round(Math.random()) - 0.5; //random so we get the right +/- combo
	}).slice(0, 4)
	$(divs).appendTo(divs[0].parentNode).show();
});
