jQuery(document).ready(function() {
  jQuery('#tableList').find('dd').hide().end().find('dt').click(function() {
     jQuery(this).next().slideToggle();
 	jQuery('#tableList').find('dd').hide().end();
   });   
});

$(document).ready(function(){
	$(".nav").superfish({
	animation : { opacity:"show",height:"show"}
	});
});

/*
THIS FOR AJAX 
$(document).ready(function() {
  $('#imagegallery a').click(function() {
    $('.image').hide().load('http://localhost/CGR/images.php', {'term': $(this).attr('rel')},function () {$(this).fadeIn('slow')});
    return false;
  });
});
*/

/*
THIS FOR STANDARD IMAGE SWAPPING 
$(document).ready(function() {
	$('#imagegallery a').click(function() {
		var reference = this;
		$('img#placeholder').attr("src",reference);
		return false;
	});
});
*/


$(document).ready(function() {
	$('#imagegallery a').click(function() {
		var reference = this;
		$("img#placeholder").fadeTo(500,0,function () {
			$("img#placeholder").attr("src",reference).fadeTo(500,1)
		});
		return false;
	});
});


$(document).ready(function() {
  $('#loading').ajaxStart(function() {
    $(this).show();
  }).ajaxStop(function() {
    $(this).hide();
  });
});
