function tourJQuery() {
	$("#tour_go_right").click(
			function() {
				var current_pos = $("#tour_content").position();
				var next_pos = current_pos.left - 554;
				if (next_pos > -2217) {
					$("#tour_content")
							.animate(
									{
										left : [ next_pos, "swing" ]
									},
									554,
									function() {
										$("#tour_box").children(".buttons")
												.children("a.current").next()
												.addClass("current");
										$("#tour_box").children(".buttons")
												.children("a.current").prev()
												.removeClass();
									});
				}
				return false;
			});

	$("#tour_go_left").click(
			function() {
				var current_pos = $("#tour_content").position();
				var next_pos = current_pos.left + 554;
				if (next_pos < 1) {
					$("#tour_content")
							.animate(
									{
										left : [ next_pos, "swing" ]
									},
									554,
									function() {
										$("#tour_box").children(".buttons")
												.children("a.current").prev()
												.addClass("current");
										$("#tour_box").children(".buttons")
												.children("a.current").next()
												.removeClass();
									});
				}
				return false;
			});

	var tour_btn_h = 0;
	$("#tour_box").children(".buttons").children("a").each( function(i) {
		if ($(this).height() > tour_btn_h) {
			tour_btn_h = $(this).height();
		}
	});
	$("#tour_box").children(".buttons").children("a").height(tour_btn_h);

	$("#tour_box").children(".buttons").children("a").click( function() {
		var current_pos = $("#tour_content").position();
		var next_pos = -(554 * parseInt($(this).attr("name")));
		$(this).siblings().removeClass();
		$(this).addClass("current");
		if (Math.abs(current_pos.left) > Math.abs(next_pos)) {
			var anim_length = Math.abs(current_pos.left) - Math.abs(next_pos);
		} else {
			var anim_length = Math.abs(next_pos) - Math.abs(current_pos.left);
		}
		$("#tour_content").animate( {
			left : [ next_pos, "swing" ]
		}, anim_length, function() {

		});
		return false;
	});

}
