// Enable compatibility mode // Powermail validation won't work otherwise
jQuery.noConflict();

// Toggle open/close comments
jQuery(document).ready(function(){
	
	// Initially hide comments
	jQuery("div.comments-container").hide();
	
	// On click, perform toggle function
	jQuery("a.comments-toggle-link").toggle(
		function(){
			jQuery("div.comments-container").fadeIn('medium');
			jQuery("img.comments-toggle-status").attr('src', 'fileadmin/img/pictos/comments-open.gif')
		},
		
		function(){
			jQuery("div.comments-container").fadeOut('medium');
			jQuery("img.comments-toggle-status").attr('src', 'fileadmin/img/pictos/comments-closed.gif')
		}
	);
 });


// Used in submissions
function showPoemForm(sender, number) {
	jQuery("poetry_title_" + number).fadeIn('medium');
	jQuery("poetry_text_" + number).fadeIn('medium');
	jQuery("sender").unbind('click');
}