// JavaScript Document

function effect1()
{
	$('.effect').cycle({ 
		fx:    'zoom', 
		sync:   1, 
		delay: -2000 
	});
}

function effect2()
{
	$('.effect').cycle({ 
		fx:    'curtainX',
		sync:  1,
		delay: -2000
	});
}

function effect3()
{
	$('.effect').cycle({ 
		fx:    'curtainY',
		sync:  1,
		delay: -2000
	});
}

function effect4()
{
	$('.effect').cycle({ 
		fx:    'turnDown', 
		delay: -4000 
	});
}

function effect5()
{
	$('.effect').cycle({ 
		fx:    'turnUp', 
		delay: -4000 
	});
}

function effect6()
{
	$('.effect').cycle({ 
		fx:     'zoom', 
		easing: 'bouncein', 
		delay:  -30000 
	});
}

function effect7()
{
	$('.effect').cycle({ 
		fx:     'zoom', 
		easing: 'bounceout', 
		delay:  -30000
	});
}


