$(function() {

	$("#clips-button").hover(
		function () {
			$(this).width("auto");
			$("#clips-menu").show();
		},
		function () {
			$(this).width(75);
			$("#clips-menu").hide();
		}
	);

	/*-- open all PDF's in new window --*/
	$("a[@href^=/pdfs/]").click(function() { window.open(this.href); return false; });

});