// JavaScript Document
var midaction = false;
	$(document).ready(function() {
		$('.swipe').swipe({
			 swipeLeft: function() { swapRight(); },
			 swipeRight: function() { swapLeft(); }
		});

		var $first = $('.scroll div:first');				
		$first.addClass('hiddenfirst');
		$first.next().addClass('first');
		$first.next().next().addClass('hidden');
		jQuery.easing.def = "easeInOutQuad"; 
		$('.mainimage').css("background", $first.next().next().css("background"));
		$('.mainimage').fadeIn(); 
		$('.mainimage div').html($first.next().next().html());
		$('.mainimage div').attr("class", $first.next().next().children().attr("class"));
		showtime = setInterval('swapRight()', 8000);
	});
