jQuery.noConflict();
jQuery(document).ready(function($) {

	if ($('#slider').length > 0) {
		$('#slider').anythingSlider({
			width               : 634,        // if resizeContent is false, this is the default width if panel size is not defined
			height              : 389,        // if resizeContent is false, this is the default height if panel size is not defined
			resizeContents      : false
		});
	}
	
	if($('.arch-mo-list').length > 0){
		var c=1;
		$('.arch-mo-list a').each(function(){
			if(c==6){
				$(this).after('<br />');
			}else{
				$(this).after(' | ');
			}
			c++;
		});
	}
});

