jQuery(document).ready(function($) {
	if (screen.width < 1024) {
		//$("#alert").html("<div id=\"message\"><p>Apologies, but this site is optimised for a monitor resolution of 1024x768.</p></div>");
		//$("#alert").hide();
		//$("#alert").fadeIn(1000);
	}
})

function slideshow(index,num) {
	viewportWidth = 530;
	workBlock = "#scroll"+index;
	//$(workBlock).stop().animate({left:-(viewportWidth*num), duration: 1500, easing: 'easeInOutCubic'}); //1000 easeInOutCubic easeInOutQuad
	$(workBlock).stop().animate({left:-(viewportWidth*num)},1500,'easeInOutCubic'); //1000 easeInOutCubic easeInOutQuad
	temp = $(workBlock).parent().parent();
	temp2 = $(temp).find("#sidebar");
	temp3 = $(temp2).find("li");
	i = 0;
	temp3.each(function(){
		$(this).find("a").removeClass("selected");
		$(this).find("a").addClass("");
		if (i == num) {
			$(this).find("a").addClass("selected");
		}
		i++;
	});
}