jQuery.noConflict( ) 

jQuery(document).ready(function() {
	jQuery(".product-comments-toggle a").click(function(){
		
		if (jQuery(".product-comments-showcomments").css("display") == "none") {
			jQuery(".product-comments-toggle img").attr({src:"fileadmin/templates/gfx/bullet_toggle_minus.png"});
			jQuery(".product-comments-toggle span").html("Kommentare ausblenden");
			jQuery(".product-comments-showcomments").show("slow");
		} else {
			jQuery(".product-comments-toggle img").attr({src:"fileadmin/templates/gfx/bullet_toggle_plus.png"});
			jQuery(".product-comments-toggle span").html("Kommentare einblenden");
			jQuery(".product-comments-showcomments").hide("slow");
		}
		
	});	
});

