jQuery(document).ready(function() {	
	jQuery(".tag-option").toggle(
		function() {
			jQuery(this).next().dequeue().slideDown("fast");
			jQuery(this).next().find("IMG").show();
		},
		function() {
			jQuery(this).next().dequeue().slideUp("fast");
	});
});