$(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');	
	
*/
	$('.imagelist').cycle({ 
		fx:    'fade',
		speed:  800, 
		timeout: 5000,
		random: true
	});
	
	if( $('a.overlay').length != 0 ){
		$('ul.imagelist img').css({'cursor': 'pointer'}).click(function(){ 
			window.location.href = $('a.overlay').attr('href'); 
		});
	}
	
});
