
$(document).ready(function(){
	
	$('a[@rel*=lightbox]').lightBox();
	$('.lightbox').lightBox();

	$(".alert").animate({ height:'show', opacity:'show' }, 'slow');
	
	$('a[@rel=external]').attr('target', '_blank');
	$('.blank').attr('target','_blank');
	
	$('.scroll').jScrollPane({scrollbarMargin:20, dragMaxHeight:60});

	$('.cycle').cycle({ 
		fx:    'fade',
		speed:  1000, 
		timeout: 4000,
		random: false,
		next: '.cycle img' 
	});
	$('.cycle img').css({cursor:'pointer'});
});
