// Running jQuery in noConflict mode
jQuery(document).ready(function($) {
	$('#slideBanner').advListRotator({
		effect: 'slide',
		effectOptions: {slideBy: 225},
		rotationInterval: 3000,
		nextItemElement: '.arrow-right',
		previousItemElement: '.arrow-left',
	});
	$('#feeds').load('./request/feeds.php', function() {
		$('#feeds h3').hover(function() {
				$(this).parent().children('p').show(250);
			},
			function() {
				$(this).parent().children('p').hide(250);
			}
		);
	});
	$('ul#photoalbum li:nth-child(3n + 1)').css('clear', 'both');
	$('ul.gallery a').lightBox();
});
