// JavaScript Document
$(document).ready(function(){
	$("#cat").accordion();	
	$("#cat div a").css("opacity","0.4");
	$("#cat div a").hover(
		function(){
			$(this).animate({ 
        	height: "32px",
        	opacity: 1}, 500 );
	
		},
		function(){
			$(this).animate({ 
        	height: "22px",
        	opacity: 0.4}, 100 );
		}
	);
	$("#cat div a").click(
	function(){
		document.location = this.href;	
	}					  
	);
})


