$(function() {

	$('.theChild').hide();

	$('.theParent').click(function() {

		var service_id = $(this).attr('id');

		var id = service_id.match(/([0-9]+)/g);

		if ($('[rel=' + id + ']').size() > 0)
		{

			$('[rel=' + id + ']').toggle();

			return false;
		}

		return true;

	});

});