$(document).ready(function(){
						   
	$('.fancybox').fancybox({ 'titlePosition': 'inside' }); 
	
	$('.blank').attr('target','_blank');
	
	$("ul li:first-child").addClass('first');
	$("ul li:last-child").addClass('last'); 
	
	
	$("ul li:nth-child(odd)").addClass('odd');
	$("ul li:nth-child(even)").addClass('even');	
	
	$('.slide').cycle({ 
		fx:    'scrollVert',
		easing:  'easeinout',
		speed:  1000, 
		timeout: 6000,
		random: false,
		next: '#header .next',
		prev: '#header .prev',
		pauseOnPagerHover: true
	});
	
	$('.cycle').cycle({ 
		fx:    'fade',
		speed:  1000, 
		timeout: 3000
	});

	
});
