
$(function() {

var first = 0;
var speed = 700;
var pause = 5500;
	
		function removeFirst(){
			first = $('#rss_schadenfix ul li:first').html();
			height = $('#rss_schadenfix ul li:first').height();
			el = $('#rss_schadenfix ul li:first');
			el.animate({opacity: 0}, speed, function() { 
				el.animate({ height: 0}, function() { 
				el.remove(); 
				}); 
			 });
			addLast(first,height);
		}
		
		function addLast(first,height){
			last = '<li style="display:none">'+first+'</li>';
			$('#rss_schadenfix ul').append(last)
			$('#rss_schadenfix ul li:last')
			.css({opacity: 1, height: height})
			.fadeIn('slow');
		}
	
//
	






$('.external_link').attr('target','_blank');



    $('img','#bubble_arbeit').bubbleup({ tooltip: true, scale: 170, color: '#0057a5', fontSize: '20px', inSpeed:  400, outSpeed: 300 });
    $('img','#bubble_familie').bubbleup({ tooltip: true, scale: 170, color: '#0057a5', fontSize: '20px', inSpeed: 400, outSpeed: 300 });
    $('img','#bubble_verkehr').bubbleup({ tooltip: true, scale: 170, color: '#0057a5', fontSize: '20px', inSpeed: 400, outSpeed: 300 });
    $('img','#bubble_firmen').bubbleup({ tooltip: true, scale: 170, color: '#0057a5', fontSize: '20px', inSpeed:  400, outSpeed: 300 });







$('<div id="items" style="display: none"></div>')
	.appendTo('#rss_schadenfix')
	.load('assets/site/snippets/snippet.rss.php', 
				function() { 
					$('#items','#rss_schadenfix').fadeIn(700); 
					interval = setInterval(removeFirst, pause); 
					});



/*
$('#main_navigation ul li').hover(
	function() { $(this).addClass('hover'); },
	function() { $(this).removeClass('hover'); }
	);
*/

});

