HEX
Server: Apache
System: Linux pdx1-shared-a1-38 6.6.104-grsec-jammy+ #3 SMP Tue Sep 16 00:28:11 UTC 2025 x86_64
User: mmickelson (3396398)
PHP: 8.1.31
Disabled: NONE
Upload Files
File: /home/mmickelson/martyknows.com/wp-content/themes/vertigo/js/functions.js
jQuery(document).ready(function() {
	jQuery(document).on('mouseenter', '.entry-info', function() {
		jQuery(this).children('.data', this).stop().animate({opacity:1},200);
	}).on('mouseleave', '.entry-info', function() {
		jQuery(this).children('.data', this).stop().animate({opacity:0},200);
	});

	jQuery("#colophon .search").click(function(event) {
		event.preventDefault();
		jQuery("#colophon #searchform").slideToggle();
		var s = jQuery("#colophon #s");
		if (s.val() == "") {
			s.val(vertigo.search);
			s.focus(function() {
				if (s.val() == vertigo.search) {
					s.val("");
				}
			});
			s.blur(function() {
				if (s.val() == "") {
					s.val(vertigo.search);
				}
			});
		}
	});

	jQuery(document).on('mouseenter', '.format-audio', function() {
		jQuery(this).find(".cassette").removeClass("hidden");
	}).on('mouseleave', '.format-audio', function() {
		jQuery(this).find(".cassette").addClass("hidden");
	});

	jQuery(document).on('mouseenter', '.format-video', function() {
		jQuery(this).find(".projector").removeClass("hidden");
	}).on('mouseleave', '.format-video', function() {
		jQuery(this).find(".projector").addClass("hidden");
	});
});