﻿$(document).ready(function() {
	$('#image_rotate').innerfade({
		speed: 'slow',
		timeout: 4000,
		type: 'sequence',
		containerheight: '220px'
	});
});

$(document).ready(function() {
	$('#image_rotate2').innerfade({
		speed: 'slow',
		timeout: 4000,
		type: 'sequence',
		containerheight: '220px'
	});
});

function GetRandom() {
	var random = Math.floor(Math.random() * 4);
	if (images[random] != "") {
		var temp = images[random];
		images[random] = "";
		return "<img src='" + temp + "'/>";
	}
	else
		return GetRandom();
}

function GetRandom2() {
	var random = Math.floor(Math.random() * 4);
	if (images2[random] != "") {
		var temp = images2[random];
		images2[random] = "";
		return "<img src='" + temp + "'/>";
	}
	else
		return GetRandom();
}
