$(document).ready(function(){
	$('.news-teaser .jslink').bind('click', function (e){
		$(this).fadeOut(150);
		var tmp = $(this).parents('.news-teaser');
		$(this).parents('.news-teaser').next().slideDown(700,function(){tmp.hide()});
		return false;
	});
	
	$('.news-complete').bind('click', function (e){
		if (!$(this).hasClass('ahover')){
			$(this).prev().show();
			$(this).slideUp(700,function(){$(this).prev().find('.jslink').fadeIn(150)});
			return false;
		}
	});
	
	$('.news-complete a').bind('mouseenter', function(e){
		$(this).parent().parent().addClass('ahover');
	});
	
	$('.news-complete a').bind('mouseleave', function(e){
		$(this).parent().parent().removeClass('ahover');
	});
});
