/*
The Web Tower
2009
*/

		var paths = [
 			'http://www.thewebtower.com',
 			'http://www.thewebtower.com/',
			'http://www.thewebtower.com/index.php',
  			'http://thewebtower.com',
 			'http://thewebtower.com/',
			'http://thewebtower.com/index.php'
		];
		for (var i = 0, j = paths.length; i < j; i++) {
			if (paths[i] === window.location.href) {
		var lim = 119;
		$(document).ready(function() {
			function lastPostFunc() {
				$('div#loading').html('<img src="../images/loading.gif" style="width: 32px; height: 32px; padding-right: 112px; border: none;" />')
				$.get("scroll.php?lastID="+$(".tooltip:last").attr("id")+"&lim="+lim,

				function(data) {
					if (data != "") {
						$(".tooltip:last").after(data);		
					}
					$('div#loading').empty();
				});
			};

			$(window).scroll(function() {
				if ($(window).scrollTop() == $(document).height() - $(window).height()) {
					lim = lim + 42;
					lastPostFunc();
				}
			});
		});

			break;
			}
		}
