// JavaScript Document

$(document).ready(function() {
	
	$('#home h1').css({'top' : '-300px'}).animate({'top':'5px'},600).animate({'top':'0px'},300);

	// image slider
	$('#slidr').jqFancyTransitions(
		{ 
			width: 630, 
			height: 330,
			effect: 'wave', // wave, zipper, curtain
			strips: 10, // number of strips
			delay: 5000, // delay between images in ms
			stripDelay: 50, // delay beetwen strips in ms
			titleOpacity: 0.7, // opacity of title
			titleSpeed: 1000, // speed of title appereance in ms
			position: 'alternate', // top, bottom, alternate, curtain
			direction: 'fountainAlternate', // left, right, alternate, random, fountain, fountainAlternate
			navigation: false, // prev and next navigation buttons
			links: false // show images as links 
		}
	);
	
	//Fancy Box anchors
	$("a.group").fancybox({
		'transitionIn'	:	'elastic',
		'transitionOut'	:	'elastic',
		'speedIn'		:	600, 
		'speedOut'		:	200, 
		'overlayShow'	:	true
	});		
		
});
