jQuery.noConflict();

jQuery(document).ready(function(){
	jQuery(".our-products h3").click(function () {
		jQuery(".our-products ul").slideToggle("fast",
			function() { 
				if(jQuery(".our-products ul").css("display") == "block") {
					jQuery(".our-products h3 span").html("-");
				} else {
					jQuery(".our-products h3 span").html("+");
				}
		 });
	});
});