

/* !Startpage News Switcher */
/* ---------------------------------------------------------------------- */

function newsSwitch() {
    //alert('test');
    
    $('.newsListItem:first').animate({'top':'20'}, 500);
    $('.newsListWrapper').append($('.newsListItem:first'));
    $('.newsListItem:first').animate({'top':'0'}, 500);
}






$(document).ready(function(){


	$('.startpageItemWrapper').hover(
	    function() {
	    	//alert('head');
	    	$(this).children('#startpageItemOverlay').animate({'top':'100px'}, 200);
	    },
	    function() {
	    	$(this).children('#startpageItemOverlay').animate({'top':'150px'}, 200);
	    }
	);



    $('.newsListItem:first').css('top','0');
    
    
	if($(".newsListItem").size() > 1 ){

		$(this).everyTime(7000, 'controlled', function() {
			newsSwitch();
		});
		
	}    


});
