<!--
var hslide_value = 235;
var vslide_value = 140;
$.fn.exists = function(){

		return $(this).is('*');

	}
$.fn.hSlideOut = function() {
if ($(this).css('left') == "0px") {
	$(this).animate({
				left: '-='+hslide_value
			}, 300, function() {
				$("#geschnatter_DIV").css('left', '-'+hslide_value+'px');
				
			});
}
}
$.fn.hSlideIn = function() {
if ($(this).css('left') == "-"+hslide_value+"px") {
	$(this).animate({
				left: '+='+hslide_value
			}, 300, function() {
				$("#geschnatter_DIV").css('left', '0px');
				
				if($('#throbber').exists()) {
	
				$.ajax({
					url: 'tweeting/tweets.php?tpp=3',
					success: function(data) {
						$('#text_scrollbox_DIV').html(data);
		  			}
				});	

				}
				
			});
}
}
$.fn.vSlideOut = function() {
if ($(this).css('top') == "0px") {
	$(this).animate({
				top: '-='+vslide_value
			}, 300, function() {
				$("#topbox_DIV").css('top', '-'+vslide_value+'px');
				
			});
}
}
$.fn.vSlideIn = function() {
if ($(this).css('top') == "-"+vslide_value+"px") {
	$(this).animate({
				top: '+='+vslide_value
			}, 300, function() {
				$("#topbox_DIV").css('top', '0px');

			});
}
}
$(document).ready(function() {
	$("#geschnatter_DIV").mouseenter(function() {

		$('#geschnatter_DIV').hSlideIn();

	});
	$("#geschnatter_DIV").mouseleave(function() {

		$('#geschnatter_DIV').hSlideOut();
		
	});

	$("#topbox_DIV").mouseenter(function() {

		$('#topbox_DIV').vSlideIn();

	});
	$("#topbox_DIV").mouseleave(function() {

		$('#topbox_DIV').vSlideOut();
		
	});
	
});
-->

