$(document).ready(function(){
	/* Wayfarer Tooltip
	 * Version 1.0.4
	 * Author Abel Mohler
	 * URI: http://www.wayfarerweb.com/wtooltip.php
	 * Released with the MIT License: http://www.wayfarerweb.com/mit.php
	 */
	$("a").wTooltip ();
	$("span").wTooltip ();
	
	// zebra stripes
	$(".zebra tr:nth-child(odd)").addClass("odd");
	
	
	// fading images
	$(".fade").fadeTo(0, 1.0).hover(function(){
		$(this).fadeTo(100, 0.6);
	},function(){
		$(this).fadeTo(100, 1.0);
	});
	
	// fading/sliding flash message
	$('#flash').click(function(){$('#flash').slideUp('slow')});
});