jQuery(document).ready(function() {

	if($('.slideshow_image').length > 0){
		$('.slideshow_image').cycle({
			fx:	'fade'
		});
	}
	if($('.promo_box').length > 0){
		$('.promo_box').cycle({
			fx:	'fade'
		});
	}
	
	if($('.communityDetails').length > 0){
		$('.communityDetails').hide();
		$('.communityDetails.active').show();
		
		$('.community_internal').click(function(){
			$('.communityDetails').hide();
			var divID = $(this).attr('id').replace('_link','');
			$('#' + divID).show();
		});
	}

});

