$(document).ready(function(){

	$("#library a").click(function(){
		window.open( $(this).attr('href') );
		return false;
	}); 


	jQuery.fn.fadeToggle = function(speed, easing, callback) {
		return this.animate({opacity: 'toggle'}, speed, easing, callback);
	}; 


	$("#library table").hide();
	

	$("#library h4").click(function(){
   	var $table = $(this).next('table');
   	$table.fadeToggle('fast'); 
   	return false;
	});
	
});
