		jQuery(window).bind("load", function() {
			jQuery("div#slider1").codaSlider()
			// jQuery("div#slider2").codaSlider()
			// etc, etc. Beware of cross-linking difficulties if using multiple sliders on one page.
		});
		
		
		
		
	$(document).ready(function(){
		$(".portfolio-main a").append("<em></em>");
		$(".portfolio-main a").hover(function() {
			$(this).find("em").animate({opacity: "show", top: "-205"}, "slow");
			var hoverText = $(this).attr("title");
			$(this).find("em").text(hoverText);
		}, function() {
			$(this).find("em").animate({opacity: "hide", top: "-215"}, "fast");
		});
	});
