jQuery(document).ready( function($) {

	$(".tabs_area").tabs( {
		fx : {
			opacity :'toggle'
		}
	});

	$(".news_text").hide();
	$("#news_item-0").show();

	$(".click_to_expand").html('<a href="/">click to expand</a>');
	$("#click_to_expand-0").html("");

	$(".click_to_expand").click( function(e) {
		e.preventDefault();

		if ($(this).prev('div').is(":hidden")) {


			$(".click_to_expand").html('<a href="/">click to expand</a>');
			$(this).html("");
			
			$(".news_text").slideUp("slow");
			$(this).prev('div').slideToggle("slow");

		}

	});

	$(".news_item h1").click( function(e) {
		e.preventDefault();

		if ($(this).next('div').is(":hidden")) {

			$(".click_to_expand").html('<a href="/">click to expand</a>');
			$(this).next('div').next('div').html("");
			
			$(".news_text").slideUp("slow");
			$(this).next('div').slideToggle("slow");

		}

	});

});