$(document).ready(function(){
	$("#mainStory").show();
	fadeMainStory();
});

function fadeMainStory()
{
	$("#mainStory").cycle({
		timeout: 5000,
		speed: 1000,
		sync: 1
	});
}

/*function updateOrientation()
{
	switch(window.orientation){
		case 0:
		imagewidth = 1024;
		imageheight = 240;
		break;
		
		case -90:
		imagewidth = 1024;
		imageheight = 240;
		break;
		
		case 90:
		imagewidth = 1024;
		imageheight = 240;
		break;
		
		case 180:
		imagewidth = 1024;
		imageheight = 240;
		break;
	}
	//new fadeshow(IMAGES_ARRAY_NAME, slideshow_width, slideshow_height, borderwidth, delay, pause (0=no, 1=yes), optionalRandomOrder)
	new fadeshow(fadeimages, imagewidth, imageheight, 0, 5000, 0);
}

if (window.addEventListener)
	window.addEventListener('load', updateOrientation, false);
else if (window.attachEvent)
	window.attachEvent('onload', updateOrientation);*/

