$(document).ready(function(){
	$('.teaserText').append('<span class="teaserTextLink more moreDown"><a href="#">' + js_lbl_expand + '</a></div>');
	$('.teaserTextLink a').click(function(){
		$('.collapsable', $(this).parents('.teaserText')).slideToggle(1000);
		
		if ($('.teaserTextLink').hasClass('moreDown'))
		{
			$('.teaserTextLink').removeClass('moreDown');
			$('.teaserTextLink').addClass('moreUp');
			$('.teaserTextLink a').html(js_lbl_collapse);
		}
		else
		{
			$('.teaserTextLink').removeClass('moreUp');
			$('.teaserTextLink').addClass('moreDown');
			$('.teaserTextLink a').html(js_lbl_expand);
		}
		return false;
	});
});