<!--
Cufon.replace('.Helvetica', { fontFamily: 'Helvetica' });
$(document).ready(function() {
	$(".thumbs li").find('img').removeAttr('alt');
	$(".thumbs li").hover(function(){
		var thumbOver = $(this).find("img").attr("src");
		$(this).find("a.thumb").css({'background' : 'url(' + thumbOver + ') no-repeat center bottom'});
		$(this).find("span").stop().fadeTo('fast', 0 , function() {
			$(this).hide();
		});
		$(this).find("em").fadeTo('slow', 1).show();
	} , function(){
		$(this).find("em").fadeTo('slow', 0).hide();
		$(this).find("span").stop().fadeTo('fast', 1).show();		
	});
});

$(document).ready(function()
{
	$.preloadCssImages();
	$("#project").after('<ul id="numbers">').cycle(
	{
		fx:	'fade',
    	timeout: 0,
		speed: 250,
		ease: 'easein',
		next:   '#project',
		pager: '#numbers',
		pagerAnchorBuilder: function(idx, slide)
		{
        	return '<li><a href="#">' + (idx + 1) + '</a></li>';
    	}
	});
});
-->
