jQuery.noConflict();
jQuery('#photo')
.before('<div id="nav2">') 
.cycle({ 
    fx:     'fade', 
    timeout: 13000,
    speed: 500,
    before:  onBefore,
    after:   onAfter,
    prev: '#prev',
	next: '#next',
    pager:  '#nav2'
 });
 
function onBefore() { 
    //$('#desc').html("Scrolling image:<br>" + this.src);
    jQuery('.infocontainer').fadeOut(2000);
}

function onAfter() { 
    //$('#desc').html('<h1>' + this.alt + '</h1>') 
    //    .append('<p>' + this.id + '</p>');
    
    jQuery('.'+this.id).fadeIn(2000);
}

jQuery(document).ready(function() { 
	//jQuery("a#inline").fancybox({'frameWidth': 400, 'frameHeight': 200, 'hideOnContentClick': false  });
});
