$(document).ready(function(){

    $("img.a").hover
    (
        function()
        {
            $(this).stop().animate({"opacity": "0"}, "slow");
        },
        function()
        {
        $(this).stop().animate({"opacity": "1"}, "slow");
        }
    );

    $('.navigation').kwicks({
      					max: 543,
						spacing: 0,
						duration: 'slow',
						/*sticky : true,*/
						/*event : 'click',*/
                        defaultKwick : 0
                        /*easing: 'easeOutBounce'*/
					});

});


$(function()
{
	$("#tree").treeview({
		collapsed: true,
		animated: "fast",
		control:"#sidetreecontrol",
		prerendered: true,
		persist: "location"
	});
})


