<!--
$(document).ready(function(){
	$(".pro_tree > li:last-child").children().show().find("img").attr('src','images/contraction.jpg');
	$(".categories > li").hover(function(){
		$(this).siblings().removeClass('hover');
		$(this).addClass('hover');
	});
	$(".pro_tree h3").hover(function(){
		$(".categories > li").removeClass('hover');
	});
	$(".pro_tree h3").click(function(){
		$(this).parent().siblings().find('ul').hide();
		$(this).parent().siblings().find("img").attr('src','images/expand.jpg');
		src = $(this).parent().find("img").attr('src');
		toggleTreeImg(src,$(this));
		$(this).parent().find('ul').toggle('slow');
	});
});

function toggleTreeImg(src,obj) {
	if (src == 'images/contraction.jpg') {
		obj.find("img").attr('src','images/expand.jpg');
	} else if (src == 'images/expand.jpg') {
		obj.find("img").attr('src','images/contraction.jpg');
	} else {
		obj.find("img").attr('src','images/contraction.jpg');
	}
}


-->
