// JavaScript Document

jQuery(document).ready(function() {

$j = jQuery.noConflict();

/*jQuery(document).ready(function() {
   $j('#main').find('.entry-utility .tag-link').find('.tags-custom').hide().end().find('.tags-title').click(function() {
     $j(this).next().slideToggle();
   });
 });*/


/*jQuery(document).ready(function() {
   $j('#main').find('.tags-custom').fadeOut('fast');

   
   
   $j('#main').find('.tags-title').click(function() {
     $j(this).next().fadeIn('slow');
	 },
	 function(){
		$j(this).next().fadeIn('slow');
	 });
   });*/


jQuery(document).ready(function() {
   $j('#main').find('.tags-custom').fadeOut('fast');
   $j('#main').find('.tags-title').click(function(event) {
	event.preventDefault();
  //  if($j('.tags-custom').css('display') == 'none'){
	if($j(this).next().css('display') == 'none'){
	  
	 
	 $j(this).next().fadeIn('slow');
	 }
   else {
		$j(this).next().fadeOut('slow');
	 };
	  });
   });
 });