jQuery(window).load(function(){

    $('#header').cycle({
		fx: 'fade' // choose your transition type, ex: fade, scrollUp, shuffle, etc...
	});
	
	$("a[rel='galeria']").colorbox();
	
	$('#news').anythingSlider({
	    // If true, builds a list of anchor links to link to each panel
		buildNavigation: false,
		resizeContents      : true,
		startPanel          : 0,    
		hashTags            : true, 
		buildArrows         : false,
		buildNavigation     : false,
		buildStartStop      : false,
 		autoPlay            : true,
 		delay				: 8000,
 	});
	
	// set up external links
	$('#externalNav a').click(function(){
	    var slide = $(this).attr('href').substring(1);
	    $('#news').anythingSlider(slide);
	    return false;
	});
	
});
