jQuery.noConflict();
jQuery(document).ready(function()
{
jQuery("a.parent").click(function(e)
	{
		e.preventDefault();
		var t = jQuery(this);
		var id = t.attr('id');
		var subCatId = '#subcat'+id;
		var jSubCat = jQuery(subCatId);
		jSubCat.animate(
		{
			opacity: 1,
			height: 'toggle',
			width: 'toggle'
			}, 1000, function() {
			// Animation complete.
		});

	});
});
