jQuery.noConflict();

jQuery(function(){
   //jQuery('.category-items li.active a:eq(0)').addClass('active');
});

jQuery(function() {
	jQuery('.price')
	   .each(function() {
	       var newtext = '<span style="font-size: 11px; line-height: 11px; padding-top: 3px; display: block;">CALL FOR<br/>PRICE</span>';
	   
	       var call = jQuery(this).text().replace('$0.00', newtext);
	       
	       if (newtext == call)
	           jQuery(this).html(newtext);
	   });
});

