$(document).ready(function() {
	
	Shadowbox.init({
		slideshowDelay: 5,
		fadeDuration: 1,
		players: ["html","img","iframe"]
	});

/* PNG FIX */
/* ----------------------------------------- */

/*
	$('.png-fix').supersleight({
		imgs: false
	});
*/

/* CURRENT PAGE ITEM */
/* ----------------------------------------- */

	$('.current_page_item a').addClass('current-page-item');
	$('.current_page_parent a').addClass('current-page-parent');

/* ORANGE AND BLUE STICKY */
/* ----------------------------------------- */

	$('.orange-sticky').before('<span class="orange-sticky-top"></span>').after('<span class="orange-sticky-bottom"></span>');
	$('.blue-sticky').before('<span class="blue-sticky-top"></span>').after('<span class="blue-sticky-bottom"></span>');
	
/* AUTHOR POST */
/* ----------------------------------------- */

	$('.author-post').prepend('<div class="author-post-top"></div>').append('<div class="author-post-bottom"></div>');
	$('<div><br /></div>').replaceAll('.author-post-excerpt br');

/* MEMBER CATEGORY LINKS */
/* ----------------------------------------- */

	$(".member-meta a[href]").each(function() { 
		this.href = this.href.replace('topics/member-listing/', '');
   });

/* ADMIN WRAPPER */
/* ----------------------------------------- */

	$("#login-tab li").toggle(function() {
		$("#admin-wrapper").animate({ "top": "-5px" }, 500);
	},function() {
		$("#admin-wrapper").animate({ "top": "-95px" }, 200);
	});

/* POLAROIDS */
/* ----------------------------------------- */

	$('.draggable').draggable({
		opacity: 0.75,
		stack: { group: '.polaroid', min: 50 }
	});
	if (($.browser.msie && parseInt($.browser.version) > 6) || !$.browser.msie) {
		$("#coffee-wrapper").mousedown(function() {
			$(".coffee-stain").fadeTo(100, 0);
		});
			$("#coffee-wrapper").mouseup(function() {
			$(".coffee-stain").fadeTo(1000, 1.0);
		});
	}

/* CIRCLES LEARN MORE */
/* ----------------------------------------- */
	
	$('.circles-legend h3 span').click(function() {
		$('.learn-more').toggle('blind');
	});
	$(".circle,.circle-small").tooltip({
		effect: 'slide',
		tip: '.circle-tool-tip',
		opacity: .95
	});

/* EVENTS */
/* ----------------------------------------- */

	$('.events .post .story-title').click(function(){
		$(this).siblings().toggle('blind');
	});

/* OIO PUBLISHER */
/* ----------------------------------------- */

	$('#oiopub-container a[title]').tooltip({
		effect: 'slide',
		tip: '#tool-tip',	
		opacity: .95
	});

/* RSS TITLES */
/* ----------------------------------------- */
				
	$('ul .rsswidget[title]').tooltip({
		effect: 'slide',
		tip: '#tool-tip',
		position: 'center right',
		opacity: .95
	});

/* CFORMS */
/* ----------------------------------------- */

	$('.cf-ol input[title]').tooltip({
		effect: 'slide',
		tip: '#tool-tip',	
		position: 'center right',
		opacity: .95
	});
	$('#li-3-24 dl').accordion({
		header: 'dt',
		autoHeight: false
	});
	$('.terms-conditions dt').append(' <span class="read-more">[ read more ]</span>');


/*************************************************** CALENDAR */
/**************************************************/

	$('.events .middle-col form').attr({
		action: ''
	});
});