/**
 * init.js
 *
 * dev@zoombali.com
**/

$(document).ready(function()
{
	// CUFON
	Cufon.replace('h1, h2, h3, h5',					{fontFamily: 'Av', textShadow: '#000 0 1px'});
	Cufon.replace('ul#menu li a',					{hover: true, textShadow: '#008 0 1px'});
	Cufon.replace('#nav h5',						{textShadow: '#EEE 0 1px'});
	Cufon.replace('#intro h2',						{color: '-linear-gradient(#FFF, #888)', textShadow: '#000 0 2px'});
	Cufon.replace('a.more',							{hover: true, textShadow: '#000 0 -1px'});
	Cufon.replace('a.download span',				{hover: true, textShadow: '#000 0 -1px'});
	
	// CYCLE
	$('.slide').cycle(
	{
		fx: 'scrollLeft', speed: 500, pager: '#pager', timeout: 0, delay: 4000,
		pagerAnchorBuilder: function(idx, slide)
		{
			return '#pager li:eq(' + (idx) + ') a';
		}
	});
	
	$('.tweet').cycle(
	{
		fx: 'scrollUp', timeout: 4000, delay: 2000
	});
	
	// ZOOM
	$('a.zoom').fancyZoom();
});