$(document).ready(function() {
	if ($("#CatsTree").length) {
		$("> ul", "#CatsTree ul li:not(.Current):has(> ul)").hide();
		$("#CatsTree ul li:not(.Current):has(> ul)").prepend("<span class='Avaaja'>+</span>");
		$("#CatsTree ul li.Current:has(> ul)").prepend("<span class='Avaaja'>-</span>");
		$(".Avaaja").click(function(){
			if ( $(this).html() == "-" ) {
				$(this).html("+");
				$(this).next("a").next("ul").slideUp(200);
			} else {
				$(this).html("-");
				$(this).next("a").next("ul").slideDown(200);
			}
		});
	}
});

$(function() {

    $("#example-one").organicTabs();
    
    $("#example-two").organicTabs({
        "speed": 200
    });

});

// DOM Ready
$(function(){
	$('#slider').anythingSlider({
		autoPlay: true,
		delay: 9000,
	});
});
