$(document).ready(function() {

	// fix ugly loading
	 $('.picture').css("visibility","visible");   

	// automatic anchors to h2 headers
/*	$('#mainContent h2').each(function(){
		var thisText = $(this).text();
		var anchorText = thisText.replace(/ /g, "-");
		var anchorLink = '<a name="' + anchorText + '"></a><a href="'+location.pathname+'#mainContent" class="toTop"><strong>.^.</strong></a>';
		var anchorText = '<a href="'+location.pathname+'#' + anchorText + '">' + thisText + '</a>'; 
		$(this).before(anchorLink);
		$(anchorText).appendTo('p.anchorNav');
	});
*/
});


$(function() {

	$('#introGallery .picture').cycle({ 
		fx: 'fade', 
		speed:  3000 ,
		timeout:  2000
	 });

});


