var imagePanel;
var maxImagePanel;

function rotateImagePanel()
{
	//Hide current panels
	$('#image-panel-' + imagePanel).animate({ opacity: 0.0 }, 500);
	
	//Increment panel ref
	imagePanel++;
	if(imagePanel > maxImagePanel)
	{
		imagePanel = 1;
	}
		
	//Show new panels
	$('#image-panel-' + imagePanel).animate({ opacity: 1.0 }, 500);
}
