jQuery.noConflict()

 
function onBefore() { 
    //jQuery('#desc').html("Scrolling image:<br>" + this.src);
    jQuery('.infocontainer').fadeOut(500);
}

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


jQuery(document).ready(function(){
	
	// Main banner
	jQuery('#photo1')
	.before('<div id="nav1">') 
	.cycle({ 
		fx:     'fade', 
		timeout: 5000,
		speed: 500,
		before:  onBefore,
		after:   onAfter
	   
	 });
	 
	 // Three window slider
	 jQuery('#photo')
//	.before('<div id="nav">') 
	.before('<div id="navcontainer"><div id="prev"></div><div id="next"></div><div id="nav"></div></div>') 
	.cycle({ 
		fx:     'scrollHorz', 
//		timeout: 150000000000,
		timeout: 8000,
		speed: 1000,
		prev: '#prev',
		next: '#next',
		pager:  '#nav'
	 });
 
});



 

