$(document).ready(function(){
    // hide all news items
	$(".news .news_text").hide();
	// add control
    $(".news .news_control").html('<img src="/media/structure/plus.gif"');
	
	// show first news item
	$('.news_text:first').slideDown("normal", function(){
        $(this).parent().find(".news_control img").attr("src", "/media/structure/minus.gif");
    })
	// function for show/hide news
    $(".news .news_control, .news h3").click(
        function(){
            if($(this).parent().find(".news_text").is(":visible")){
				$(this).parent().find(".news_text").slideUp("normal", function(){
	                $(this).parent().find(".news_control img").attr("src", "/media/structure/plus.gif");
	            })
			}else{
				$(this).parent().find(".news_text").slideDown("normal", function(){
	                $(this).parent().find(".news_control img").attr("src", "/media/structure/minus.gif");
	            })
			}
        }
    );
});

