/* 
   javascript functions
   'Externe Funktionen' - 2011-04-11 09:39:39
*/


$(document).ready(function() {
	$('a[href][rel="external"]').attr("target", "_blank");
	
	$('#col1_content p:first + p.slide_down').hide(0, function(){
		$('#col1_content p span.read_more').prepend(function() {
			return $('<a>weiterlesen</a>')
				.attr('href', '/')
				.attr('title', 'Klicken Sie hier, um den ganzen Artikel zu lesen.')
				.css('font-weight', 'bold')
				.click(function(){
					$('#col1_content p.slide_down').slideDown('slow');
					$('#col1_content p span.read_more').hide();
					return false;
				});
		})
		.prepend(function() {
			return $('#col1_content p.slide_down').text().split(" ", 6).join(" ")+"... ";
		})
		.css('color', '#aaa')
		.css('font-style', 'italic');
	});
});

