
var j$ = jQuery.noConflict();

j$(document).ready( function(){
	//switch pictures
    j$("#rotator_links a").click(function() {
        j$("#rotator_links a").removeClass("on");
		j$(this).addClass("on");
		return false;
	});

	j$("#dnn_ctr398_Display_HtmlHolder").cycle({
    	timeout:4000,
    	speed:500,
    	before:onBefore,
    	pause:true,
    	next:'#next',
    	prev:'#prev'
	});
 
	function onBefore() {
		j$('#desc').html(this.alt);
	}
	
	j$('a[rel*=facebox]').facebox() 
});