$(document).ready(function() {

	// New checkout functionality.
	
	$(".scrolldown").click(function() {
		var top = $("#content2").position().top;
		var innerh = $("#content2").height();
		var divh = $(".wrap").height();
		if(((innerh-divh)+top) > 0) {
			$("#content2").stop(true, true).animate({"top": "-=100"});
		}
		return false;
	});
	
	$(".scrollup").click(function() {
		var top = $("#content2").position().top;
		var innerh = $("#content2").height();
		var divh = $(".wrap").height();
		if(top < 0) {
			$("#content2").stop(true, true).animate({"top": "+=100"});
		}
		return false;
	});
	
	// Cycle images. 
	
	var doAfter = function(a,b,c) {
		setTimeout(function() { $(".imagedata:visible").find(".description").animate({width: "toggle"}, $(this).width); }, 2000);
	}

	$("#slider").cycle({ fx: 'fade', timeout: 10000, after: doAfter });

});
